We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8338b2f commit 597342bCopy full SHA for 597342b
1 file changed
test/extract.cpp
@@ -51,14 +51,14 @@ std::string const& extract_string_cref(object x)
51
#if defined(BOOST_MSVC) && BOOST_MSVC <= 1300
52
# pragma warning(push)
53
# pragma warning(disable:4172) // msvc lies about returning a reference to temporary
54
-#elif defined(_MSC_VER) && defined(__ICL) && __ICL <= 700
+#elif defined(_MSC_VER) && defined(__ICL) && __ICL <= 800
55
56
# pragma warning(disable:473) // intel/win32 does too
57
#endif
58
59
return extract<std::string const&>(x);
60
61
-#if defined(BOOST_MSVC) && BOOST_MSVC <= 1300 || defined(_MSC_VER) && defined(__ICL) && __ICL <= 700
+#if defined(BOOST_MSVC) && BOOST_MSVC <= 1300 || defined(_MSC_VER) && defined(__ICL) && __ICL <= 800
62
# pragma warning(pop)
63
64
}
0 commit comments