about summary refs log tree commit diff stats
path: root/010vm.cc
diff options
context:
space:
mode:
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);