about summary refs log tree commit diff stats
path: root/012transform.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-11-07 22:56:06 -0800
committerKartik K. Agaram <vc@akkartik.com>2015-11-07 22:56:06 -0800
commit91abd257e27bd694bfc59c4cf1439171eef10a09 (patch)
treed1d3b7d8dad4b6461d97da64c9fa1b0fc4e0b1b3 /012transform.cc
parent82c886d71c12ad902ea8b9c81c7993af7ddf2d2b (diff)
downloadmu-91abd257e27bd694bfc59c4cf1439171eef10a09.tar.gz
2393 - redo 2391
Got that idea to work with a special-case for 'new'. Requires parsing
new's first ingredient, performing the replacement, and then turning it
back into a string. I didn't want to replace NEW with ALLOCATE right
here, because then it messes with my invariant that transform should
never see a naked ALLOCATE.

Layer 11 still not working, but everything else is. Let's clean up
before we diagnose the new breakage.
Diffstat (limited to '012transform.cc')
-rw-r--r--012transform.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/012transform.cc b/012transform.cc
index b5266ed6..7837ae67 100644
--- a/012transform.cc
+++ b/012transform.cc
@@ -37,7 +37,7 @@ void transform_all() {
       recipe& r = p->second;
       if (r.steps.empty()) continue;
       if (r.transformed_until != t-1) continue;
-//?       cerr << "  recipe " << r.name << '\n';
+      // End Transform Checks
       (*Transform.at(t))(/*recipe_ordinal*/p->first);
       r.transformed_until = t;
     }