about summary refs log tree commit diff stats
path: root/035call_ingredient.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-11-29 11:43:25 -0800
committerKartik K. Agaram <vc@akkartik.com>2015-11-29 11:51:02 -0800
commit691b529e53a608c0837599f2562897e01fda1888 (patch)
tree7116fa6cedb9c7febba7528777b577c9ca23438a /035call_ingredient.cc
parentafb467ea0270c59f9fdcad9fe5303d0ed526177c (diff)
downloadmu-691b529e53a608c0837599f2562897e01fda1888.tar.gz
2607 - resolve some edge cases in static dispatch
Diffstat (limited to '035call_ingredient.cc')
-rw-r--r--035call_ingredient.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/035call_ingredient.cc b/035call_ingredient.cc
index 89d6507d..b949230d 100644
--- a/035call_ingredient.cc
+++ b/035call_ingredient.cc
@@ -62,6 +62,7 @@ case NEXT_INGREDIENT: {
     else if (!types_match(product,
                           current_call().ingredients.at(current_call().next_ingredient_to_process))) {
       raise_error << maybe(current_recipe_name()) << "wrong type for ingredient " << product.original_string << '\n' << end();
+      // End next-ingredient Type Mismatch Error
     }
     products.push_back(
         current_call().ingredient_atoms.at(current_call().next_ingredient_to_process));