about summary refs log tree commit diff stats
path: root/040brace.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-10-18 10:44:40 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-10-18 10:44:40 -0700
commit5813bcfc7d5c368514554d712da45584b5114f0b (patch)
tree09a68f2b2be114d962c8db1ff500c34ee982303d /040brace.cc
parentc83f3bca47b1538ce469fc4463d6165156735675 (diff)
downloadmu-5813bcfc7d5c368514554d712da45584b5114f0b.tar.gz
3520
Drop a few debug prints. Hopefully now we need never duplicate trace
statements and can instead just dump them to screen.

I'll soon need the ability to selectively dump traces for a specific
label.
Diffstat (limited to '040brace.cc')
-rw-r--r--040brace.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/040brace.cc b/040brace.cc
index 89b4b633..bfabe5da 100644
--- a/040brace.cc
+++ b/040brace.cc
@@ -40,7 +40,6 @@ void transform_braces(const recipe_ordinal r) {
   // use signed integer for step index because we'll be doing arithmetic on it
   list<pair<int/*OPEN/CLOSE*/, /*step*/int> > braces;
   trace(9991, "transform") << "--- transform braces for recipe " << get(Recipe, r).name << end();
-//?   cerr << "--- transform braces for recipe " << get(Recipe, r).name << '\n';
   for (int index = 0; index < SIZE(get(Recipe, r).steps); ++index) {
     const instruction& inst = get(Recipe, r).steps.at(index);
     if (inst.label == "{") {