2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-24 06:02:14 +00:00

fixed typo

[SVN r10240]
This commit is contained in:
Dave Abrahams
2001-05-28 20:14:25 +00:00
parent 66da2339d4
commit 29a855813d

View File

@@ -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&ltFoo&gt::ptr_to_python(p);
return boost::python::python_extension_class_converters<Foo&gt::ptr_to_python(p);
}
PyObject* to_python(const Foo* p)