about summary refs log tree commit diff stats
path: root/069hash.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 /069hash.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 '069hash.cc')
-rw-r--r--069hash.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/069hash.cc b/069hash.cc
index 51925e3d..75781ec6 100644
--- a/069hash.cc
+++ b/069hash.cc
@@ -55,10 +55,10 @@ size_t hash_mu_scalar(size_t h, const reagent& r) {
 
 size_t hash_mu_address(size_t h, reagent& r) {
   if (r.value == 0) return 0;
-  trace(9999, "mem") << "location " << r.value << " is " << no_scientific(get_or_insert(Memory, r.value)) << end();
+  trace("mem") << "location " << r.value << " is " << no_scientific(get_or_insert(Memory, r.value)) << end();
   r.set_value(get_or_insert(Memory, r.value));
   if (r.value != 0) {
-    trace(9999, "mem") << "skipping refcount at " << r.value << end();
+    trace("mem") << "skipping refcount at " << r.value << end();
     r.set_value(r.value+1);  // skip refcount
   }
   drop_from_type(r, "address");