about summary refs log tree commit diff stats
path: root/043new.cc
diff options
context:
space:
mode:
Diffstat (limited to '043new.cc')
-rw-r--r--043new.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/043new.cc b/043new.cc
index db11ff96..96b2fe37 100644
--- a/043new.cc
+++ b/043new.cc
@@ -61,8 +61,7 @@ void transform_new_to_allocate(const recipe_ordinal r) {
     // Convert 'new' To 'allocate'
     if (inst.name == "new") {
       inst.operation = ALLOCATE;
-//?       istringstream in(inst.ingredients.at(0).name);
-//?       in >> std::noskipws;
+      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);