diff options
-rw-r--r-- | 058shape_shifting_recipe.cc | 2 |
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; } |