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 01376a8 commit 8ded45bCopy full SHA for 8ded45b
modules/decimal.cxx
@@ -123,7 +123,17 @@ struct numeric_limits<boost::decimal::decimal128_fast>;
123
124
// MSVC wants <boost/decimal> to be imported but also does not support importing it...
125
#ifdef _MSC_VER
126
+# pragma warning( push )
127
# pragma warning( disable : 5244 )
128
+#elif defined(__clang__)
129
+# pragma clang diagnostic push
130
+# pragma clang diagnostic ignored "-Winclude-angled-in-module-purview"
131
#endif
132
133
#include <boost/decimal.hpp>
134
+
135
+#ifdef _MSC_VER
136
+# pragma warning( pop )
137
138
+# pragma clang diagnostic pop
139
+#endif
0 commit comments