about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-11-01 20:58:36 -0800
committerKartik K. Agaram <vc@akkartik.com>2015-11-01 20:58:36 -0800
commitb3989b25c6dbb708ee56c9c391eb4aa3384909b7 (patch)
treebe447365cb4117070cba92d9f1a311d6b258a85b
parent5f8495aca1812fea2a6cbf348871f35bd52ef277 (diff)
downloadmu-b3989b25c6dbb708ee56c9c391eb4aa3384909b7.tar.gz
2345
-rw-r--r--058generic_container.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/058generic_container.cc b/058generic_container.cc
index d5368765..0918e35a 100644
--- a/058generic_container.cc
+++ b/058generic_container.cc
@@ -74,7 +74,7 @@ if (type->value >= START_TYPE_INGREDIENTS
 
 :(before "End size_of(type) Container Cases")
 if (t.elements.at(i)->value >= START_TYPE_INGREDIENTS) {
-  trace(9999, "type") << "checking size of type ingredient\n";
+  trace(9999, "type") << "checking size of type ingredient\n" << end();
   result += size_of_type_ingredient(t.elements.at(i), type->right);
   continue;
 }
@@ -91,7 +91,7 @@ long long int size_of_type_ingredient(const type_tree* element_template, const t
   }
   assert(curr);
   assert(!curr->left);  // unimplemented
-  trace(9999, "type") << "type deduced to be " << Type[curr->value].name << "$";
+  trace(9999, "type") << "type deduced to be " << Type[curr->value].name << "$" << end();
   type_tree tmp(curr->value);
   if (curr->right)
     tmp.right = new type_tree(*curr->right);