diff --git a/doc/v2/extract.html b/doc/v2/extract.html index ade6c936..bec97f28 100644 --- a/doc/v2/extract.html +++ b/doc/v2/extract.html @@ -216,11 +216,11 @@ BOOST_PYTHON_MODULE(extract_ext) object x_obj = x_class(3); // Get a reference to the C++ object out of the Python object - X const& x = extract<X&>(x_obj); + X& x = extract<X&>(x_obj); assert(x.value() == 3); } -
Revised 30 September, 2002
+Revised 15 November, 2002
© Copyright Dave Abrahams 2002. All Rights