2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-22 05:22:45 +00:00

vc6 workaround

[SVN r25278]
This commit is contained in:
Dave Abrahams
2004-09-20 13:45:52 +00:00
parent 227448f061
commit 2ca8be0bb2

View File

@@ -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<T>::converters;
PyTypeObject* type = r.get_class_object();
return detail::wrapper_base::get_override(name, type);
return this->base::get_override(name, type);
}
};