about summary refs log tree commit diff stats
path: root/030container.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2017-11-03 01:50:46 -0700
committerKartik K. Agaram <vc@akkartik.com>2017-11-03 01:50:46 -0700
commita89c1bed26fd05fc25034e43901c7f03351721a2 (patch)
tree1f269a69ecc25d84c2fd99070a9be79c491b0c9f /030container.cc
parenta3195d440d2f0e99400db78e5a4386691c94a9a0 (diff)
downloadmu-a89c1bed26fd05fc25034e43901c7f03351721a2.tar.gz
4104
Stop hardcoding Max_depth everywhere; we had a default value for a
reason but then we forgot all about it.
Diffstat (limited to '030container.cc')
-rw-r--r--030container.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/030container.cc b/030container.cc
index 23901b3f..d29976ea 100644
--- a/030container.cc
+++ b/030container.cc
@@ -576,7 +576,7 @@ case PUT: {
   // Write Memory in PUT in Run
   write_products = false;
   for (int i = 0;  i < SIZE(ingredients.at(2));  ++i) {
-    trace(9999, "mem") << "storing " << no_scientific(ingredients.at(2).at(i)) << " in location " << address+i << end();
+    trace("mem") << "storing " << no_scientific(ingredients.at(2).at(i)) << " in location " << address+i << end();
     put(Memory, address+i, ingredients.at(2).at(i));
   }
   break;
@@ -672,7 +672,7 @@ void insert_container(const string& command, kind_of_type kind, istream& in) {
       || get(Type_ordinal, name) == 0) {
     put(Type_ordinal, name, Next_type_ordinal++);
   }
-  trace(9999, "parse") << "type number: " << get(Type_ordinal, name) << end();
+  trace("parse") << "type number: " << get(Type_ordinal, name) << end();
   skip_bracket(in, "'"+command+"' must begin with '['");
   type_info& info = get_or_insert(Type, get(Type_ordinal, name));
   if (info.Num_calls_to_transform_all_at_first_definition == -1) {