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. --- 035lookup.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '035lookup.cc') diff --git a/035lookup.cc b/035lookup.cc index a0cb8fb2..343d7900 100644 --- a/035lookup.cc +++ b/035lookup.cc @@ -99,11 +99,11 @@ void lookup_memory(reagent& x) { void lookup_memory_core(reagent& x, bool check_for_null) { if (x.value == 0) return; - trace(9999, "mem") << "location " << x.value << " is " << no_scientific(get_or_insert(Memory, x.value)) << end(); + trace("mem") << "location " << x.value << " is " << no_scientific(get_or_insert(Memory, x.value)) << end(); x.set_value(get_or_insert(Memory, x.value)); drop_from_type(x, "address"); if (x.value) { - trace(9999, "mem") << "skipping refcount at " << x.value << end(); + trace("mem") << "skipping refcount at " << x.value << end(); x.set_value(x.value+1); // skip refcount } else if (check_for_null) { -- cgit 1.4.1-2-gfad0