about summary refs log tree commit diff stats
path: root/010vm.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 /010vm.cc
parent91abd257e27bd694bfc59c4cf1439171eef10a09 (diff)
downloadmu-59399e8f446625baab98c5b3c079550c2ab75957.tar.gz
2394 - clean up output
Diffstat (limited to '010vm.cc')
-rw-r--r--010vm.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/010vm.cc b/010vm.cc
index 9ac47f6f..a4c5eb54 100644
--- a/010vm.cc
+++ b/010vm.cc
@@ -278,10 +278,8 @@ type_tree* new_type_tree(const string_tree* properties) {
       result->value = get(Type_ordinal, type_name);
     else if (is_integer(type_name))  // sometimes types will contain non-type tags, like numbers for the size of an array
       result->value = 0;
-    else {
-      cerr << "AAAAAAAAAAAAAA "; dump_property(properties, cerr); cerr << '\n';
+    else
       result->value = -1;  // should never happen; will trigger errors later
-    }
   }
   result->left = new_type_tree(properties->left);
   result->right = new_type_tree(properties->right);