Skip to content

Commit 0c453fd

Browse files
author
Ralf W. Grosse-Kunstleve
committed
MIPSpro 7.3.1.x workaround
[SVN r24103]
1 parent a1f74e9 commit 0c453fd

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

include/boost/python/override.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ namespace detail
3333
class method_result
3434
{
3535
private:
36-
friend class override;
36+
friend class boost::python::override;
3737
explicit method_result(PyObject* x)
3838
: m_obj(x)
3939
{}

include/boost/python/wrapper.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,13 @@ template <class T>
1515
class wrapper : public detail::wrapper_base
1616
{
1717
# if defined(BOOST_PYTHON_NO_SFINAE)
18+
public:
1819
typedef T _wrapper_wrapped_type_;
1920
# endif
2021
protected:
2122
override get_override(char const* name) const
2223
{
23-
return this->wrapper_base::get_override(
24+
return this->detail::wrapper_base::get_override(
2425
name, converter::registered<T>::converters.get_class_object());
2526
}
2627
};

0 commit comments

Comments
 (0)