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-11-06 17:03:02 -0800
committerKartik K. Agaram <vc@akkartik.com>2015-11-06 17:03:02 -0800
commit57d01f212c8cddb14f585b3ab32984d11a9222e3 (patch)
tree924df28cf2b5aa37a037f7375343667ec8ca0341 /056recipe_header.cc
parent3bcc53bcd6345dc5aa6ddeca949ab59dba6e7590 (diff)
downloadmu-57d01f212c8cddb14f585b3ab32984d11a9222e3.tar.gz
2382
Starting to leave commented out prints again out of desperation.
Diffstat (limited to '056recipe_header.cc')
-rw-r--r--056recipe_header.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/056recipe_header.cc b/056recipe_header.cc
index cb63b013..33ccc44f 100644
--- a/056recipe_header.cc
+++ b/056recipe_header.cc
@@ -109,6 +109,7 @@ void check_header_products(const recipe_ordinal r) {
   const recipe& rr = get(Recipe, r);
   if (rr.products.empty()) return;
   trace(9991, "transform") << "--- checking reply instructions against header for " << rr.name << end();
+//?   cerr << "--- checking reply instructions against header for " << rr.name << '\n';
   for (long long int i = 0; i < SIZE(rr.steps); ++i) {
     const instruction& inst = rr.steps.at(i);
     if (inst.name != "reply") continue;
@@ -146,6 +147,7 @@ void deduce_types_from_header(const recipe_ordinal r) {
   recipe& rr = get(Recipe, r);
   if (rr.products.empty()) return;
   trace(9991, "transform") << "--- deduce types from header for " << rr.name << end();
+//?   cerr << "--- deduce types from header for " << rr.name << '\n';
   map<string, const type_tree*> header;
   for (long long int i = 0; i < SIZE(rr.ingredients); ++i) {
     header[rr.ingredients.at(i).name] = rr.ingredients.at(i).type;