2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-23 05:42:30 +00:00

Be more correct about testing for Intel 7.1 on MS Windows.

[SVN r25386]
This commit is contained in:
Jonathan Brandmeyer
2004-09-24 02:47:14 +00:00
parent 3bb3434a8d
commit 70e012bc45

View File

@@ -81,8 +81,8 @@ bool check_numeric_array_rich_slice()
// Verify functions accepting a slice argument can be called
bool accept_slice( slice) { return true; }
#if (BOOST_WORKAROUND( BOOST_MSVC, BOOST_TESTED_AT(1400))) \
|| ((BOOST_WORKAROUND( BOOST_INTEL_CXX_VERSION, == 710)) && defined(_WIN32))
#if BOOST_WORKAROUND( BOOST_MSVC, BOOST_TESTED_AT(1400)) \
|| BOOST_WORKAROUND( BOOST_INTEL_WIN, == 710)
int check_slice_get_indicies(slice index);
#endif
int check_slice_get_indicies(const slice index)