about summary refs log tree commit diff stats
path: root/011load.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-10-31 21:56:17 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-10-31 21:56:17 -0700
commit5683823abe7c156c2e520531da9acf6e3283d41c (patch)
treed8cf8e2a8367d658d8cdcc0c750d8820e6d57d16 /011load.cc
parentb7cd91a6b407b4ab4f1365cff0cb56e48db4cb6b (diff)
downloadmu-5683823abe7c156c2e520531da9acf6e3283d41c.tar.gz
2334
Diffstat (limited to '011load.cc')
-rw-r--r--011load.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/011load.cc b/011load.cc
index 36b45214..10fe3817 100644
--- a/011load.cc
+++ b/011load.cc
@@ -57,6 +57,7 @@ long long int slurp_recipe(istream& in) {
     Recipe.erase(Recipe_ordinal[result.name]);
   }
   slurp_body(in, result);
+  // End recipe Body(result)
   Recipe[Recipe_ordinal[result.name]] = result;
   // track added recipes because we may need to undo them in tests; see below
   recently_added_recipes.push_back(Recipe_ordinal[result.name]);
@@ -142,6 +143,7 @@ bool next_instruction(istream& in, instruction* curr) {
   }
 
   trace(9993, "parse") << "instruction: " << curr->name << end();
+  trace(9993, "parse") << "  number of ingredients: " << SIZE(curr->ingredients) << end();
   for (vector<reagent>::iterator p = curr->ingredients.begin(); p != curr->ingredients.end(); ++p) {
     trace(9993, "parse") << "  ingredient: " << p->to_string() << end();
   }