From a89c1bed26fd05fc25034e43901c7f03351721a2 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Fri, 3 Nov 2017 01:50:46 -0700 Subject: 4104 Stop hardcoding Max_depth everywhere; we had a default value for a reason but then we forgot all about it. --- 069hash.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '069hash.cc') 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"); -- cgit 1.4.1-2-gfad0