We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d79173 commit b56afe1Copy full SHA for b56afe1
1 file changed
test/github_issue_1384.cpp
@@ -4,7 +4,22 @@
4
//
5
// See: https://github.com/boostorg/decimal/issues/1384
6
7
+#ifdef __clang__
8
+#pragma clang diagnostic push
9
+#pragma clang diagnostic ignored "-Wold-style-cast"
10
+#elif defined(__GNUC__)
11
+#pragma GCC diagnostic push
12
+#pragma GCC diagnostic ignored "-Wold-style-cast"
13
+#endif
14
+
15
#include <boost/log/trivial.hpp>
16
17
18
+#pragma clang diagnostic pop
19
20
+#pragma GCC diagnostic pop
21
22
23
#include <boost/core/lightweight_test.hpp>
24
#include <boost/decimal.hpp>
25
0 commit comments