about summary refs log tree commit diff stats
path: root/062scheduler.cc
diff options
context:
space:
mode:
Diffstat (limited to '062scheduler.cc')
-rw-r--r--062scheduler.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/062scheduler.cc b/062scheduler.cc
index a1209738..a3d0baad 100644
--- a/062scheduler.cc
+++ b/062scheduler.cc
@@ -168,7 +168,7 @@ case START_RUNNING: {
   // populate ingredients
   for (int i = 1; i < SIZE(current_instruction().ingredients); ++i) {
     new_routine->calls.front().ingredient_atoms.push_back(ingredients.at(i));
-    reagent ingredient = current_instruction().ingredients.at(i);
+    reagent/*copy*/ ingredient = current_instruction().ingredients.at(i);
     canonize_type(ingredient);
     new_routine->calls.front().ingredients.push_back(ingredient);
   }