about summary refs log tree commit diff stats
path: root/056recipe_header.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-10-31 23:09:04 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-10-31 23:12:39 -0700
commitbcd33d6dbfb1fb0325ac21910bec9847ca1dd8df (patch)
treed51c4841d69e7e4cafdd1a4f1fc3bdea37ecb0a9 /056recipe_header.cc
parent3929c26cfc6e2dce8bfd119a722e4a8531886f96 (diff)
downloadmu-bcd33d6dbfb1fb0325ac21910bec9847ca1dd8df.tar.gz
2336
Minor tweak: track all recipe variants.
Diffstat (limited to '056recipe_header.cc')
-rw-r--r--056recipe_header.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/056recipe_header.cc b/056recipe_header.cc
index 59ea721d..ddb2ccd1 100644
--- a/056recipe_header.cc
+++ b/056recipe_header.cc
@@ -74,8 +74,7 @@ if (result.has_header) {
   trace(9999, "parse") << "recipe " << result.name << " has a header" << end();
 }
 
-//: Now rewrite 'load-ingredients' to instructions to create all reagents in
-//: the header.
+//: Rewrite 'load-ingredients' to instructions to create all reagents in the header.
 
 :(before "End Rewrite Instruction(curr, recipe result)")
 if (curr.name == "load-ingredients") {
@@ -89,6 +88,8 @@ if (curr.name == "load-ingredients") {
   }
 }
 
+//:: Check types going in and out of all recipes with headers.
+
 :(scenarios transform)
 :(scenario recipe_headers_are_checked)
 % Hide_errors = true;