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:
@@ -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)
|
||||
{}
|
||||
|
||||
@@ -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());
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user