1
0
forked from boostorg/bind

port to vacpp

[SVN r23057]
This commit is contained in:
Toon Knapen
2004-06-08 13:43:03 +00:00
parent cc984fad42
commit 4377e763a5

View File

@@ -135,10 +135,14 @@ template<class R, class T> inline _mfi::dm<R, T> unwrap(R T::* * pm, int)
return _mfi::dm<R, T>(*pm);
}
#if !BOOST_WORKAROUND(__IBMCPP__, BOOST_TESTED_AT(600))
// IBM/VisualAge 6.0 is not able to handle this overload.
template<class R, class T> inline _mfi::dm<R, T> unwrap(R T::* const * pm, int)
{
return _mfi::dm<R, T>(*pm);
}
#endif
#endif