diff --git a/build/build.opt b/build/build.opt index a650cf1f..5086795f 100644 Binary files a/build/build.opt and b/build/build.opt differ diff --git a/doc/pointers.html b/doc/pointers.html index 26f96f0d..e26cea02 100644 --- a/doc/pointers.html +++ b/doc/pointers.html @@ -85,12 +85,12 @@ code before the last Python reference to it disappears: BOOST_PYTHON_BEGIN_CONVERSION_NAMESPACE // this is a gcc 2.95.2 bug workaround PyObject* to_python(Foo* p) { - return boost::python::PyExtensionClassConverters::ptr_to_python(p); + return boost::python::python_extension_class_converters<Foo>::ptr_to_python(p); } PyObject* to_python(const Foo* p) { - return to_python(const_cast(p)); + return to_python(const_cast<Foo*>(p)); } BOOST_PYTHON_END_CONVERSION_NAMESPACE