We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d19b67 commit 19f166bCopy full SHA for 19f166b
1 file changed
test/test_mapairy.cpp
@@ -4,6 +4,14 @@
4
// Boost Software License, Version 1.0. (See accompanying file
5
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6
7
+#ifdef __clang__
8
+# pragma clang diagnostic push
9
+# pragma clang diagnostic ignored "-Wliteral-range"
10
+#elif defined(__GNUC__)
11
+# pragma gcc diagnostic push
12
+# pragma gcc diagnostic ignored "-Wliteral-range"
13
+#endif
14
+
15
#define BOOST_TEST_MAIN
16
#define BOOST_TEST_MODULE StatsMapAiryTest
17
#include <boost/math/tools/config.hpp>
0 commit comments