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

vc6/7 workaround

[SVN r16286]
This commit is contained in:
Dave Abrahams
2002-11-16 20:01:44 +00:00
parent f2ac0145da
commit 8b7527318d

View File

@@ -47,7 +47,11 @@ std::auto_ptr<X> callback(object f)
std::auto_ptr<X> extract_(object o)
{
return extract<std::auto_ptr<X>&>(o);
return extract<std::auto_ptr<X>&>(o)
#if BOOST_MSVC <= 1300
()
#endif
;
}
BOOST_PYTHON_MODULE(auto_ptr_ext)