about summary refs log tree commit diff stats
path: root/059shape_shifting_recipe.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-02-22 15:40:44 -0800
committerKartik K. Agaram <vc@akkartik.com>2016-02-22 15:40:44 -0800
commitbe45c431146bc0740a30c77ebd559840104c1140 (patch)
tree6b690a9821cd5fbcd722ce1861fb409dd2357b7a /059shape_shifting_recipe.cc
parent8abff87099450c3793274a7e3c13a713f4a31887 (diff)
downloadmu-be45c431146bc0740a30c77ebd559840104c1140.tar.gz
2685
Diffstat (limited to '059shape_shifting_recipe.cc')
-rw-r--r--059shape_shifting_recipe.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/059shape_shifting_recipe.cc b/059shape_shifting_recipe.cc
index ba48226c..6e65e344 100644
--- a/059shape_shifting_recipe.cc
+++ b/059shape_shifting_recipe.cc
@@ -285,7 +285,7 @@ void compute_type_names(recipe& variant) {
 void save_or_deduce_type_name(reagent& x, map<string, type_tree*>& type, const recipe& variant) {
   trace(9994, "transform") << "    checking " << to_string(x) << ": " << names_to_string(x.type) << end();
   if (!x.type && contains_key(type, x.name)) {
-    x.type = new type_tree(*get(type, x.name));
+    x.type = new type_tree(*get(type, x.name)); //TODO
     trace(9994, "transform") << "    deducing type to " << names_to_string(x.type) << end();
     return;
   }