diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-11-09 13:55:25 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-11-09 13:55:25 -0800 |
commit | d88d6fb556e7855eb3d78a8493092f7918d964f5 (patch) | |
tree | 6781b100b90fa82836f613c24022a9d233756041 | |
parent | 4135fcd978395bb688cc7582224d676b4b16ff8f (diff) | |
download | mu-d88d6fb556e7855eb3d78a8493092f7918d964f5.tar.gz |
2409 - stabilize traces
-rw-r--r-- | 098check_type_pointers.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/098check_type_pointers.cc b/098check_type_pointers.cc index f052b1d7..36c548a9 100644 --- a/098check_type_pointers.cc +++ b/098check_type_pointers.cc @@ -6,7 +6,6 @@ void check_type_pointers() { for (map<recipe_ordinal, recipe>::iterator p = Recipe.begin(); p != Recipe.end(); ++p) { if (any_type_ingredient_in_header(p->first)) continue; const recipe& r = p->second; - trace(9991, "transform") << "--- checking type and type_name pointers for recipe " << r.name << end(); for (long long int i = 0; i < SIZE(r.steps); ++i) { const instruction& inst = r.steps.at(i); for (long long int j = 0; j < SIZE(inst.ingredients); ++j) { |