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.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/zen/scope_guard.h b/zen/scope_guard.h
index 1345447e..67eb3053 100644
--- a/zen/scope_guard.h
+++ b/zen/scope_guard.h
@@ -20,7 +20,7 @@ inline int getUncaughtExceptionCount() { return std::uncaught_exceptions(); }
#elif defined ZEN_LINUX || defined ZEN_MAC
//std::uncaught_exceptions() currently unsupported on GCC and Clang => clean up ASAP
#ifdef ZEN_LINUX
- static_assert(__GNUC__ < 5 || (__GNUC__ == 5 && (__GNUC_MINOR__ < 2 || (__GNUC_MINOR__ == 2 && __GNUC_PATCHLEVEL__ <= 1))), "check std::uncaught_exceptions support");
+ static_assert(__GNUC__ < 5 || (__GNUC__ == 5 && (__GNUC_MINOR__ < 3 || (__GNUC_MINOR__ == 3 && __GNUC_PATCHLEVEL__ <= 1))), "check std::uncaught_exceptions support");
#else
static_assert(__clang_major__ < 7 || (__clang_major__ == 7 && __clang_minor__ <= 0), "check std::uncaught_exceptions support");
#endif
@@ -76,7 +76,7 @@ public:
if (!dismissed)
{
#ifdef _MSC_VER
- #pragma warning(suppress: 4127) //"conditional expression is constant"
+#pragma warning(suppress: 4127) //"conditional expression is constant"
#endif
if (runMode != ScopeGuardRunMode::ON_EXIT)
{
@@ -86,7 +86,7 @@ public:
}
#ifdef _MSC_VER
- #pragma warning(suppress: 4127) //"conditional expression is constant"
+#pragma warning(suppress: 4127) //"conditional expression is constant"
#endif
if (runMode == ScopeGuardRunMode::ON_SUCCESS)
fun_(); //throw X
bgstack15