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

[BL] re-enabled stack unwind detection

parent ff5b596e
No related branches found
No related tags found
No related merge requests found
......@@ -70,6 +70,13 @@ ConfigTree(ConfigTree && other)
ConfigTree::~ConfigTree()
{
if (std::uncaught_exception()) {
/* If the stack unwinds the check below shall be suppressed in order to
* not accumulate false-positive configuration errors.
*/
return;
}
try {
checkAndInvalidate();
} catch (std::exception& e) {
......
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