]> gitweb.factorcode.org Git - factor.git/blobdiff - vm/tuples.cpp
audio.engine.test: cleanup using
[factor.git] / vm / tuples.cpp
index a8a037f8fa25a94df7567641498a989b1df40da3..b15914f62ce6ca27ad9ce0865a7efbec02437d76 100644 (file)
@@ -2,8 +2,8 @@
 
 namespace factor {
 
-/* push a new tuple on the stack, filling its slots with f */
-/* Allocates memory */
+// push a new tuple on the stack, filling its slots with f
+// Allocates memory
 void factor_vm::primitive_tuple() {
   data_root<tuple_layout> layout(ctx->pop(), this);
   tagged<tuple> t(allot<tuple>(tuple_size(layout.untagged())));
@@ -15,8 +15,8 @@ void factor_vm::primitive_tuple() {
   ctx->push(t.value());
 }
 
-/* push a new tuple on the stack, filling its slots from the stack */
-/* Allocates memory */
+// push a new tuple on the stack, filling its slots from the stack
+// Allocates memory
 void factor_vm::primitive_tuple_boa() {
   data_root<tuple_layout> layout(ctx->pop(), this);
   tagged<tuple> t(allot<tuple>(tuple_size(layout.untagged())));