From 3e3383e782d2c1ef30d0f9aa324dc32f55452b55 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Sun, 10 Sep 2017 10:57:19 -0700 Subject: 3992 --- 073scheduler.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to '073scheduler.cc') diff --git a/073scheduler.cc b/073scheduler.cc index e3ac18cf..962ac915 100644 --- a/073scheduler.cc +++ b/073scheduler.cc @@ -178,10 +178,9 @@ case START_RUNNING: { routine* new_routine = new routine(ingredients.at(0).at(0)); new_routine->parent_index = Current_routine_index; // populate ingredients - for (int i = 1; i < SIZE(current_instruction().ingredients); ++i) { + for (int i = /*skip callee*/1; i < SIZE(current_instruction().ingredients); ++i) { new_routine->calls.front().ingredient_atoms.push_back(ingredients.at(i)); reagent/*copy*/ ingredient = current_instruction().ingredients.at(i); - canonize_type(ingredient); new_routine->calls.front().ingredients.push_back(ingredient); // End Populate start-running Ingredient } -- cgit 1.4.1-2-gfad0