2
0
mirror of https://github.com/boostorg/python.git synced 2026-02-02 21:12:15 +00:00

MIPSpro 7.3.1.x workaround

[SVN r24103]
This commit is contained in:
Ralf W. Grosse-Kunstleve
2004-07-27 07:08:08 +00:00
parent a1f74e9c63
commit 0c453fda0b
2 changed files with 3 additions and 2 deletions

View File

@@ -33,7 +33,7 @@ namespace detail
class method_result
{
private:
friend class override;
friend class boost::python::override;
explicit method_result(PyObject* x)
: m_obj(x)
{}

View File

@@ -15,12 +15,13 @@ template <class T>
class wrapper : public detail::wrapper_base
{
# if defined(BOOST_PYTHON_NO_SFINAE)
public:
typedef T _wrapper_wrapped_type_;
# endif
protected:
override get_override(char const* name) const
{
return this->wrapper_base::get_override(
return this->detail::wrapper_base::get_override(
name, converter::registered<T>::converters.get_class_object());
}
};