We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f3f496 commit f0cd135Copy full SHA for f0cd135
test/benchmarks.cpp
@@ -27,6 +27,12 @@ using namespace std::chrono_literals;
27
# define BOOST_DECIMAL_NO_INLINE __attribute__ ((__noinline__))
28
#elif defined(_MSC_VER)
29
# define BOOST_DECIMAL_NO_INLINE __declspec(noinline)
30
+#elif defined(__GNUC__)
31
+# pragma GCC diagnostic push
32
+# pragma GCC diagnostic ignored "-Wfloat-equal"
33
+# pragma GCC diagnostic ignored "-Wold-style-cast"
34
+# pragma GCC diagnostic ignored "-Wstringop-overread"
35
+# define BOOST_DECIMAL_NO_INLINE __attribute__ ((__noinline__))
36
#endif
37
38
constexpr unsigned N = 2'000'000U;
0 commit comments