Skip to content
Snippets Groups Projects
Commit 2ce79b6c authored by Kilian Lackhove's avatar Kilian Lackhove Committed by Douglas Serson
Browse files

print an error message for erroneous equations when compiled with RELEASE

(cherry picked from commit d85b5f1a)
parent 7ae53926
No related branches found
No related tags found
No related merge requests found
......@@ -80,7 +80,7 @@ namespace Nektar
{
m_expr_id = -1;
std::string msg(std::string("Equation::Equation() fails on expression [") + m_expr + std::string("]\n"));
ASSERTL1(false, msg);
ASSERTL0(false, msg);
throw e;
return;
}
......@@ -88,7 +88,7 @@ namespace Nektar
{
m_expr_id = -1;
std::string msg(std::string("Equation::Equation() fails on expression [") + m_expr + std::string("]\n"));
ASSERTL1(false, msg);
ASSERTL0(false, msg);
throw e;
return;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment