2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-24 18:12:43 +00:00

Intel workaround extended to 9.0

[SVN r27861]
This commit is contained in:
Stefan Slapeta
2005-03-29 07:41:34 +00:00
parent bbabf21abf
commit 2fdb98079d

View File

@@ -105,7 +105,7 @@ void test()
// as easy!
python::object py_base = PythonDerived();
Base& py = python::extract<Base&>(py_base)
#if BOOST_WORKAROUND(BOOST_MSVC, <= 1300) || BOOST_WORKAROUND(BOOST_INTEL_WIN, <= 810)
#if BOOST_WORKAROUND(BOOST_MSVC, <= 1300) || BOOST_WORKAROUND(BOOST_INTEL_WIN, <= 900)
()
#endif
;