summaryrefslogtreecommitdiff
path: root/zen/scope_guard.h
diff options
context:
space:
mode:
Diffstat (limited to 'zen/scope_guard.h')
-rw-r--r--zen/scope_guard.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/zen/scope_guard.h b/zen/scope_guard.h
index 5d3ac411..846d5663 100644
--- a/zen/scope_guard.h
+++ b/zen/scope_guard.h
@@ -60,8 +60,7 @@ template <typename F> inline
void runScopeGuardDestructor(F& fun, bool failed, std::integral_constant<ScopeGuardRunMode, ScopeGuardRunMode::onFail>) noexcept
{
if (failed)
- try { fun(); }
- catch (...) { assert(false); }
+ try { fun(); } catch (...) { assert(false); }
}
bgstack15