diff --git a/src/macro/Directives.cc b/src/macro/Directives.cc index 51abcedf..0e234234 100644 --- a/src/macro/Directives.cc +++ b/src/macro/Directives.cc @@ -1,5 +1,5 @@ /* - * Copyright © 2019-2020 Dynare Team + * Copyright © 2019-2021 Dynare Team * * This file is part of Dynare. * @@ -253,7 +253,9 @@ If::interpret(ostream &output, Environment &env, vector &paths { first_clause = false; VariablePtr vp = dynamic_pointer_cast(expr); - assert(vp); + if (!vp) + error(StackTrace(ifdef ? "@#ifdef" : "@ifndef", + "The condition must be a variable name", location)); if ((ifdef && env.isVariableDefined(vp->getName())) || (ifndef && !env.isVariableDefined(vp->getName()))) {