From 0cac702240475d964d31e30c48c83a10d4c5f470 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Thu, 26 May 2016 10:11:53 -0700 Subject: 3013 --- html/023boolean.cc.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'html/023boolean.cc.html') diff --git a/html/023boolean.cc.html b/html/023boolean.cc.html index beae6805..9036dfa3 100644 --- a/html/023boolean.cc.html +++ b/html/023boolean.cc.html @@ -156,8 +156,8 @@ NOT, put(Recipe_ordinal, "not", NOT); :(before "End Primitive Recipe Checks") case NOT: { - if (SIZE(inst.products) > SIZE(inst.ingredients)) { - raise << maybe(get(Recipe, r).name) << "'not' cannot have fewer ingredients than products in '" << to_original_string(inst) << "'\n" << end(); + if (SIZE(inst.products) != SIZE(inst.ingredients)) { + raise << "ingredients and products should match in '" << to_original_string(inst) << "'\n" << end(); break; } for (int i = 0; i < SIZE(inst.ingredients); ++i) { -- cgit 1.4.1-2-gfad0