about summary refs log tree commit diff stats
path: root/cpp/013run
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-04-12 20:47:49 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-04-12 20:48:05 -0700
commitf1a6f32323a982f8aa9b8fe757f8d4e2ae4d77db (patch)
tree731297f5a113721aafc043a5315e814680294cba /cpp/013run
parent39f77cc54ea08cd1feac8796aaa617d00a35f835 (diff)
downloadmu-f1a6f32323a982f8aa9b8fe757f8d4e2ae4d77db.tar.gz
1051
Diffstat (limited to 'cpp/013run')
-rw-r--r--cpp/013run6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/013run b/cpp/013run
index 63a27e48..0a1f6529 100644
--- a/cpp/013run
+++ b/cpp/013run
@@ -45,14 +45,14 @@ void run(routine rr) {
     trace("run") << "instruction " << recipe_name(rr) << '/' << pc;
 //?     cout << "operation " << instructions[pc].operation << '\n'; //? 3
     switch (instructions[pc].operation) {
-      // Primitive Recipe Implementations.
+      // Primitive Recipe Implementations
       case COPY: {
         trace("run") << "ingredient 0 is " << instructions[pc].ingredients[0].name;
         vector<int> data = read_memory(instructions[pc].ingredients[0]);
         write_memory(instructions[pc].products[0], data);
         break;
       }
-      // End Primitive Recipe Implementations.
+      // End Primitive Recipe Implementations
       default: {
         cout << "not a primitive op: " << instructions[pc].operation << '\n';
       }
@@ -156,7 +156,7 @@ size_t size_of(const reagent& r) {
   return size_of(r.types);
 }
 size_t size_of(const vector<type_number>& types) {
-  // End size_of(types) Cases.
+  // End size_of(types) Cases
   return 1;
 }