about summary refs log tree commit diff stats
path: root/058shape_shifting_recipe.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-05-17 15:43:07 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-05-17 15:43:07 -0700
commit01804ea41e0ba47d9ec349eef651282e4826a536 (patch)
treefae6082ebcb1082740f9f0c7ed4bed724e73c9f6 /058shape_shifting_recipe.cc
parent51b53b13f9d88b42ca81510b41a91340bab72ccc (diff)
downloadmu-01804ea41e0ba47d9ec349eef651282e4826a536.tar.gz
2969
Diffstat (limited to '058shape_shifting_recipe.cc')
-rw-r--r--058shape_shifting_recipe.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/058shape_shifting_recipe.cc b/058shape_shifting_recipe.cc
index c64bc840..c69678bf 100644
--- a/058shape_shifting_recipe.cc
+++ b/058shape_shifting_recipe.cc
@@ -275,7 +275,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)); //TODO
+    x.type = new type_tree(*get(type, x.name));
     trace(9994, "transform") << "    deducing type to " << names_to_string(x.type) << end();
     return;
   }