2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-21 05:02:17 +00:00

Intel 8.1 workaround

[SVN r25529]
This commit is contained in:
Stefan Slapeta
2004-10-02 19:14:52 +00:00
parent 937a851baa
commit f99f1e187c

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, <= 800)
#if BOOST_WORKAROUND(BOOST_MSVC, <= 1300) || BOOST_WORKAROUND(BOOST_INTEL_WIN, <= 810)
()
#endif
;