about summary refs log tree commit diff stats
path: root/036call_ingredient.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-05-23 17:58:10 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-05-23 17:58:10 -0700
commit50eab110e81f6f82a00a9eb7d87ccedd3697cfd3 (patch)
tree51d2a8d978ce798b9539ee3f555ff084c06e4ac0 /036call_ingredient.cc
parente00ddbeb372f9b92e3c9a430818ee8a0d0848064 (diff)
downloadmu-50eab110e81f6f82a00a9eb7d87ccedd3697cfd3.tar.gz
1444
Diffstat (limited to '036call_ingredient.cc')
-rw-r--r--036call_ingredient.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/036call_ingredient.cc b/036call_ingredient.cc
index b829a772..fd78ce94 100644
--- a/036call_ingredient.cc
+++ b/036call_ingredient.cc
@@ -23,8 +23,8 @@ recipe f [
 :(before "End call Fields")
 vector<vector<double> > ingredient_atoms;
 long long int next_ingredient_to_process;
-:(replace{} "call(recipe_number r)")
-call(recipe_number r) :running_recipe(r), running_step_index(0), next_ingredient_to_process(0) {}
+:(before "End call Constructor")
+next_ingredient_to_process = 0;
 
 :(replace "Current_routine->calls.push_front(call(current_instruction().operation))" following "End Primitive Recipe Implementations")
 call callee(current_instruction().operation);