about summary refs log tree commit diff stats
path: root/035call.cc
diff options
context:
space:
mode:
Diffstat (limited to '035call.cc')
-rw-r--r--035call.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/035call.cc b/035call.cc
index 0a783b97..91609312 100644
--- a/035call.cc
+++ b/035call.cc
@@ -37,7 +37,11 @@ struct call {
   recipe_number running_recipe;
   long long int running_step_index;
   // End call Fields
-  call(recipe_number r) :running_recipe(r), running_step_index(0) {}
+  call(recipe_number r) {
+    running_recipe = r;
+    running_step_index = 0;
+    // End call Constructor
+  }
 };
 typedef list<call> call_stack;