diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2017-12-07 13:37:44 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2017-12-07 13:37:44 -0800 |
commit | 7aadc1a666b8cf66f0b6792130bf0039951f9ebe (patch) | |
tree | 9849e4ae94aa72a9c67303db33713eb387aac4be | |
parent | 640d43bb7d116697ff240e45fa8d7b55e7ce3575 (diff) | |
download | mu-7aadc1a666b8cf66f0b6792130bf0039951f9ebe.tar.gz |
4146
-rw-r--r-- | 042name.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/042name.cc b/042name.cc index 6aaf6066..077eed0d 100644 --- a/042name.cc +++ b/042name.cc @@ -49,7 +49,6 @@ void transform_names(const recipe_ordinal r) { // map names to addresses for (int in = 0; in < SIZE(inst.ingredients); ++in) { reagent& ingredient = inst.ingredients.at(in); - // Begin transform_names Ingredient Special-cases(ingredient, inst, caller) if (is_disqualified(ingredient, inst, caller.name)) continue; if (is_numeric_location(ingredient)) numeric_locations_used = true; if (is_named_location(ingredient)) names_used = true; @@ -71,7 +70,6 @@ void transform_names(const recipe_ordinal r) { } for (int out = 0; out < SIZE(inst.products); ++out) { reagent& product = inst.products.at(out); - // Begin transform_names Product Special-cases(product, inst, caller) if (is_disqualified(product, inst, caller.name)) continue; if (is_numeric_location(product)) numeric_locations_used = true; if (is_named_location(product)) names_used = true; |