diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-11-01 20:10:56 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-11-01 20:10:56 -0800 |
commit | 5f8495aca1812fea2a6cbf348871f35bd52ef277 (patch) | |
tree | 34a687fa2beec5ceaf318e7ba3f8a552c527a882 | |
parent | adbbfb1bdda9e2e687f43180240ea428e4c8eb13 (diff) | |
download | mu-5f8495aca1812fea2a6cbf348871f35bd52ef277.tar.gz |
2344
-rw-r--r-- | 048check_type_by_name.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/048check_type_by_name.cc b/048check_type_by_name.cc index e526644a..ff263d7d 100644 --- a/048check_type_by_name.cc +++ b/048check_type_by_name.cc @@ -59,6 +59,7 @@ void deduce_missing_type(map<string, type_tree*>& type, reagent& x) { if (x.type) return; if (type.find(x.name) == type.end()) return; x.type = new type_tree(*type[x.name]); + trace(9992, "transform") << x.name << " <= " << dump_types(x) << end(); assert(!x.properties.at(0).second); x.properties.at(0).second = new string_tree("as-before"); } |