diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-07-08 21:33:34 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-07-08 21:33:34 -0700 |
commit | 5e2569f302cf293d200221942bb0e19643b66667 (patch) | |
tree | 35234fd3397a4d79732322c09ac05ea05cb52ffb | |
parent | 5e9eff8ca137dcb929e9c986d6aaa42c762caf61 (diff) | |
download | mu-5e2569f302cf293d200221942bb0e19643b66667.tar.gz |
1732
-rw-r--r-- | 081run_interactive.cc | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/081run_interactive.cc b/081run_interactive.cc index d264aeb2..6d12e368 100644 --- a/081run_interactive.cc +++ b/081run_interactive.cc @@ -213,15 +213,3 @@ long long int warnings_from_trace() { assert(!out.str().empty()); return new_string(out.str()); } - -//:: debugging tool - -:(before "End Primitive Recipe Declarations") -_RUN_DEPTH, -:(before "End Primitive Recipe Numbers") -Recipe_ordinal["$run-depth"] = _RUN_DEPTH; -:(before "End Primitive Recipe Implementations") -case _RUN_DEPTH: { - cerr << Current_routine->calls.size(); - break; -} |