Skip to content
Snippets Groups Projects
Commit dd67f1cc authored by Christoph Lehmann's avatar Christoph Lehmann
Browse files

[BL] disable check if stack unwinds

parent eedf1ec7
No related branches found
No related tags found
No related merge requests found
......@@ -65,7 +65,8 @@ ConfigTree(ConfigTree && other)
ConfigTree::~ConfigTree()
{
checkAndInvalidate();
if (!std::uncaught_exception())
checkAndInvalidate();
}
ConfigTree&
......@@ -194,6 +195,9 @@ void ConfigTree::ignoreConfigParameterAll(const std::string &param) const
void ConfigTree::error(const std::string& message) const
{
_onerror(_filename, _path, message);
OGS_FATAL(
"ConfigTree: The error handler does not break out of the normal "
"control flow.");
}
void ConfigTree::warning(const std::string& message) const
......
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