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-07 23:02:25 -0800
committerKartik K. Agaram <vc@akkartik.com>2015-11-07 23:02:51 -0800
commit59399e8f446625baab98c5b3c079550c2ab75957 (patch)
treec02b9f2c364a2d55ce0d3a3f69286597876d35e8 /043new.cc
parent91abd257e27bd694bfc59c4cf1439171eef10a09 (diff)
downloadmu-59399e8f446625baab98c5b3c079550c2ab75957.tar.gz
2394 - clean up output
Diffstat (limited to '043new.cc')
-rw-r--r--043new.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/043new.cc b/043new.cc
index 96b2fe37..b5b2ec76 100644
--- a/043new.cc
+++ b/043new.cc
@@ -61,7 +61,6 @@ void transform_new_to_allocate(const recipe_ordinal r) {
     // Convert 'new' To 'allocate'
     if (inst.name == "new") {
       inst.operation = ALLOCATE;
-      cerr << inst.ingredients.at(0).name << '\n';
       string_tree* type_name = new string_tree(inst.ingredients.at(0).name);
       // End Post-processing(type_name) When Converting 'new'
       type_tree* type = new_type_tree(type_name);