Skip to content

Commit 597342b

Browse files
committed
Suppress warnings for intel 8
[SVN r24082]
1 parent 8338b2f commit 597342b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/extract.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,14 @@ std::string const& extract_string_cref(object x)
5151
#if defined(BOOST_MSVC) && BOOST_MSVC <= 1300
5252
# pragma warning(push)
5353
# pragma warning(disable:4172) // msvc lies about returning a reference to temporary
54-
#elif defined(_MSC_VER) && defined(__ICL) && __ICL <= 700
54+
#elif defined(_MSC_VER) && defined(__ICL) && __ICL <= 800
5555
# pragma warning(push)
5656
# pragma warning(disable:473) // intel/win32 does too
5757
#endif
5858

5959
return extract<std::string const&>(x);
6060

61-
#if defined(BOOST_MSVC) && BOOST_MSVC <= 1300 || defined(_MSC_VER) && defined(__ICL) && __ICL <= 700
61+
#if defined(BOOST_MSVC) && BOOST_MSVC <= 1300 || defined(_MSC_VER) && defined(__ICL) && __ICL <= 800
6262
# pragma warning(pop)
6363
#endif
6464
}

0 commit comments

Comments
 (0)