about summary refs log tree commit diff stats
path: root/cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp')
-rw-r--r--cpp/035call6
-rw-r--r--cpp/042new6
2 files changed, 6 insertions, 6 deletions
diff --git a/cpp/035call b/cpp/035call
index 2f9b0f15..0c84056e 100644
--- a/cpp/035call
+++ b/cpp/035call
@@ -48,9 +48,9 @@ struct routine {
   const vector<instruction>& steps() const;
 };
 :(code)
-  routine::routine(recipe_number r) {
-    calls.push(call(r));
-  }
+routine::routine(recipe_number r) {
+  calls.push(call(r));
+}
 
 //:: now update routine's helpers
 
diff --git a/cpp/042new b/cpp/042new
index a980d8cb..d268e6ca 100644
--- a/cpp/042new
+++ b/cpp/042new
@@ -17,9 +17,9 @@ Memory_allocated_until = 1000;
 :(before "End routine Fields")
 size_t alloc;
 :(replace{} "routine::routine(recipe_number r)")
-  routine::routine(recipe_number r) :alloc(Memory_allocated_until) {
-    calls.push(call(r));
-  }
+routine::routine(recipe_number r) :alloc(Memory_allocated_until) {
+  calls.push(call(r));
+}
 
 //:: First handle 'type' operands.