summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/localconsts.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/localconsts.h b/src/localconsts.h
index 4f5358763..881680c93 100644
--- a/src/localconsts.h
+++ b/src/localconsts.h
@@ -162,13 +162,13 @@
#endif // __clang__
#ifdef __GNUC__
-#if GCC_VERSION > 40500
+#if GCC_VERSION >= 40600
#define PRAGMA45(str) _Pragma(#str)
#elif defined(__clang__)
#define PRAGMA45(str) _Pragma(#str)
-#else // GCC_VERSION > 40400
+#else // GCC_VERSION > 40600
#define PRAGMA45(str)
-#endif // GCC_VERSION > 40400
+#endif // GCC_VERSION > 40600
#endif // __GNUC__
#ifdef __GNUC__