about summary refs log tree commit diff stats
path: root/057static_dispatch.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-11-07 22:31:35 -0800
committerKartik K. Agaram <vc@akkartik.com>2015-11-07 22:31:35 -0800
commit82c886d71c12ad902ea8b9c81c7993af7ddf2d2b (patch)
treedbeb619bbddfa7e342eebc08e18cfafd6a7299fe /057static_dispatch.cc
parent562ceed016e00411407356cf6d7ec960b86811e1 (diff)
downloadmu-82c886d71c12ad902ea8b9c81c7993af7ddf2d2b.tar.gz
2392 - undo 2391
Yup, type ingredients were taking size 1 by default.
Diffstat (limited to '057static_dispatch.cc')
-rw-r--r--057static_dispatch.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/057static_dispatch.cc b/057static_dispatch.cc
index a52cda9a..b8b663e2 100644
--- a/057static_dispatch.cc
+++ b/057static_dispatch.cc
@@ -112,7 +112,7 @@ Transform.push_back(resolve_ambiguous_calls);  // idempotent
 void resolve_ambiguous_calls(recipe_ordinal r) {
   if (!get(Recipe, r).has_header) return;
   trace(9991, "transform") << "--- resolve ambiguous calls for recipe " << get(Recipe, r).name << end();
-  cerr << "--- resolve ambiguous calls for recipe " << get(Recipe, r).name << '\n';
+//?   cerr << "--- resolve ambiguous calls for recipe " << get(Recipe, r).name << '\n';
   for (long long int index = 0; index < SIZE(get(Recipe, r).steps); ++index) {
     instruction& inst = get(Recipe, r).steps.at(index);
     if (inst.is_label) continue;