From 7eb42dc36b02149979fac59a28a3477b758cae51 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Sun, 10 Mar 2002 06:26:11 +0000 Subject: [PATCH] factored out void_ptr manipulations [SVN r13156] --- include/boost/python/type_from_python.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/boost/python/type_from_python.hpp b/include/boost/python/type_from_python.hpp index 16b8da81..d5b9faed 100644 --- a/include/boost/python/type_from_python.hpp +++ b/include/boost/python/type_from_python.hpp @@ -7,6 +7,7 @@ # define TYPE_FROM_PYTHON_DWA2002130_HPP # include +# include namespace boost { namespace python { @@ -31,7 +32,7 @@ namespace detail { typedef typename boost::add_reference::type param; return &Extractor::execute( - boost::python::converter::detail::void_ptr_to_reference( + boost::python::detail::void_ptr_to_reference( op, (param(*)())0 ) ); }