We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fad402d commit ae221a1Copy full SHA for ae221a1
src/dlmalloc_ext_2_8_6.c
@@ -51,12 +51,12 @@
51
#pragma warning (disable : 4127) /*conditional expression is constant*/
52
#elif defined(__GNUC__)
53
54
-# if ((__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) >= 48000)
+# if ((__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) >= 40800)
55
//Disable false positives triggered by -Waggressive-loop-optimizations
56
# pragma GCC diagnostic ignored "-Waggressive-loop-optimizations"
57
# endif
58
59
-# if ((__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) >= 46000)
+# if ((__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) >= 40600)
60
//Disable false positives triggered by -Warray-bounds
61
# pragma GCC diagnostic ignored "-Warray-bounds"
62
0 commit comments