From cfc7a1467b820be5de7054844edded0fb5f1f494 Mon Sep 17 00:00:00 2001 From: Houtan Bastani Date: Tue, 20 Aug 2019 14:54:33 +0200 Subject: [PATCH] macro processor: fix error message --- src/macro/Expressions.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/macro/Expressions.cc b/src/macro/Expressions.cc index c137173c..ed69754d 100644 --- a/src/macro/Expressions.cc +++ b/src/macro/Expressions.cc @@ -1020,7 +1020,7 @@ Comprehension::eval() if (!c_when) if (!c_expr) - throw StackTrace("Comp", "DINGDONG",location); + throw StackTrace("Comprehension", "Internal Error: Impossible case", location); else values.emplace_back(c_expr->clone()->eval()); else