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 b5d3092 commit 56554afCopy full SHA for 56554af
examples/format.cpp
@@ -2,6 +2,12 @@
2
// Distributed under the Boost Software License, Version 1.0.
3
// https://www.boost.org/LICENSE_1_0.txt
4
5
+// MSVC 14.3 has a conversion error in <algorithm> so we need to try and supress that everywhere
6
+#ifdef _MSC_VER
7
+# pragma warning(push)
8
+# pragma warning(disable : 4244)
9
+#endif
10
+
11
#include <boost/decimal.hpp>
12
#include <iostream>
13
0 commit comments