2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-30 20:12:37 +00:00

cw ICE workaround

[SVN r24979]
This commit is contained in:
Dave Abrahams
2004-09-08 18:57:14 +00:00
parent 0b4f2bafe6
commit f1260e6869

View File

@@ -21,8 +21,11 @@ class wrapper : public detail::wrapper_base
protected:
override get_override(char const* name) const
{
return this->detail::wrapper_base::get_override(
name, converter::registered<T>::converters.get_class_object());
converter::registration const& r
= converter::registered<T>::converters;
PyTypeObject* type = r.get_class_object();
return detail::wrapper_base::get_override(name, type);
}
};