about summary refs log tree commit diff stats
path: root/081run_interactive.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-07-08 21:33:34 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-07-08 21:33:34 -0700
commit5e2569f302cf293d200221942bb0e19643b66667 (patch)
tree35234fd3397a4d79732322c09ac05ea05cb52ffb /081run_interactive.cc
parent5e9eff8ca137dcb929e9c986d6aaa42c762caf61 (diff)
downloadmu-5e2569f302cf293d200221942bb0e19643b66667.tar.gz
1732
Diffstat (limited to '081run_interactive.cc')
-rw-r--r--081run_interactive.cc12
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;
-}