2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-25 06:22:15 +00:00

Intel 9 workaround

[SVN r27517]
This commit is contained in:
Stefan Slapeta
2005-02-28 12:14:13 +00:00
parent c25967a094
commit 7bd76d869b

View File

@@ -50,7 +50,7 @@ std::string const& extract_string_cref(object x)
#if defined(BOOST_MSVC) && BOOST_MSVC <= 1300
# pragma warning(push)
# pragma warning(disable:4172) // msvc lies about returning a reference to temporary
#elif defined(_MSC_VER) && defined(__ICL) && __ICL <= 800
#elif defined(_MSC_VER) && defined(__ICL) && __ICL <= 900
# pragma warning(push)
# pragma warning(disable:473) // intel/win32 does too
#endif