From 26aa8b69f96b7537652ba8b41e5ba10214e7a6dd Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Tue, 10 Jul 2001 17:57:06 +0000 Subject: [PATCH] Integrate fix from Peter.Bienstman@rug.ac.be [SVN r10584] --- doc/pointers.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/pointers.html b/doc/pointers.html index 9085e152..11cfd8d9 100644 --- a/doc/pointers.html +++ b/doc/pointers.html @@ -85,7 +85,7 @@ 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::python_extension_class_converters<Foo>::ptr_to_python(p); + return boost::python::python_extension_class_converters<Foo>::smart_ptr_to_python(p); } PyObject* to_python(const Foo* p)