about summary refs log tree commit diff stats
path: root/059generic_recipe.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-11-08 15:19:01 -0800
committerKartik K. Agaram <vc@akkartik.com>2015-11-08 15:19:15 -0800
commita9a233715cbec202e90259ab95d97e35f143c146 (patch)
treeb132d33c16ad07111497d6ba867b190a079aa46d /059generic_recipe.cc
parentb954ac3812f15482db28db83a39ab7f6e56a4b06 (diff)
downloadmu-a9a233715cbec202e90259ab95d97e35f143c146.tar.gz
2400 - eliminate last few warnings
Diffstat (limited to '059generic_recipe.cc')
-rw-r--r--059generic_recipe.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/059generic_recipe.cc b/059generic_recipe.cc
index afdc960f..7d5f64f1 100644
--- a/059generic_recipe.cc
+++ b/059generic_recipe.cc
@@ -307,7 +307,6 @@ void replace_type_ingredients(string_tree* type, const map<string, const string_
     type->value = replacement->value;
     if (replacement->left) type->left = new string_tree(*replacement->left);
     if (replacement->right) type->right = new string_tree(*replacement->right);
-    trace(9993, "transform") << " ===> " << debug_string(type) << end();
   }
   replace_type_ingredients(type->left, mappings);
   replace_type_ingredients(type->right, mappings);