about summary refs log tree commit diff stats
path: root/043new.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 /043new.cc
parent3bcc53bcd6345dc5aa6ddeca949ab59dba6e7590 (diff)
downloadmu-57d01f212c8cddb14f585b3ab32984d11a9222e3.tar.gz
2382
Starting to leave commented out prints again out of desperation.
Diffstat (limited to '043new.cc')
-rw-r--r--043new.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/043new.cc b/043new.cc
index f951bb95..233b49b5 100644
--- a/043new.cc
+++ b/043new.cc
@@ -55,6 +55,7 @@ Transform.push_back(transform_new_to_allocate);
 :(code)
 void transform_new_to_allocate(const recipe_ordinal r) {
   trace(9991, "transform") << "--- convert 'new' to 'allocate' for recipe " << get(Recipe, r).name << end();
+//?   cerr << "--- convert 'new' to 'allocate' for recipe " << get(Recipe, r).name << '\n';
   for (long long int i = 0; i < SIZE(get(Recipe, r).steps); ++i) {
     instruction& inst = get(Recipe, r).steps.at(i);
     // Convert 'new' To 'allocate'