diff --git a/include/boost/python/wrapper.hpp b/include/boost/python/wrapper.hpp index fdff6082..28871a5e 100755 --- a/include/boost/python/wrapper.hpp +++ b/include/boost/python/wrapper.hpp @@ -21,11 +21,12 @@ class wrapper : public detail::wrapper_base protected: override get_override(char const* name) const { + typedef detail::wrapper_base base; converter::registration const& r = converter::registered::converters; PyTypeObject* type = r.get_class_object(); - return detail::wrapper_base::get_override(name, type); + return this->base::get_override(name, type); } };