From 5911691c0d1b488d5592ecbca0b6aeed342f82f2 Mon Sep 17 00:00:00 2001 From: "Ralf W. Grosse-Kunstleve" Date: Mon, 26 May 2003 19:46:05 +0000 Subject: [PATCH] workaround for silly MIPSpro compiler [SVN r18550] --- include/boost/python/object_core.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/python/object_core.hpp b/include/boost/python/object_core.hpp index 7efc5471..7c477544 100755 --- a/include/boost/python/object_core.hpp +++ b/include/boost/python/object_core.hpp @@ -222,10 +222,10 @@ namespace api object_initializer< BOOST_DEDUCED_TYPENAME unwrap_reference::type >::get( - do_unforward(x) + object::do_unforward(x) , detail::convertible::check( to_ptr( - do_unforward(x) + object::do_unforward(x) ) ) ))