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-08 14:46:48 -0800
committerKartik K. Agaram <vc@akkartik.com>2015-11-08 14:46:48 -0800
commitb954ac3812f15482db28db83a39ab7f6e56a4b06 (patch)
tree3b18b6a52897f0b52f254f379812980ebee92636 /043new.cc
parent785a60fae9e2c55951f6c2053640c4d1da1174cf (diff)
downloadmu-b954ac3812f15482db28db83a39ab7f6e56a4b06.tar.gz
2399 - consistent debug_string vocabulary
Diffstat (limited to '043new.cc')
-rw-r--r--043new.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/043new.cc b/043new.cc
index b5b2ec76..c442f58a 100644
--- a/043new.cc
+++ b/043new.cc
@@ -65,9 +65,7 @@ void transform_new_to_allocate(const recipe_ordinal r) {
       // End Post-processing(type_name) When Converting 'new'
       type_tree* type = new_type_tree(type_name);
       inst.ingredients.at(0).set_value(size_of(type));
-      ostringstream out;
-      dump_property(type_name, out);
-      trace(9992, "new") << "size of " << out.str() << " is " << inst.ingredients.at(0).value << end();
+      trace(9992, "new") << "size of " << debug_string(type_name) << " is " << inst.ingredients.at(0).value << end();
       delete type;
       delete type_name;
     }