From 4377e763a5ef4ac55474239ac0114fd143a8a8d1 Mon Sep 17 00:00:00 2001 From: Toon Knapen Date: Tue, 8 Jun 2004 13:43:03 +0000 Subject: [PATCH] port to vacpp [SVN r23057] --- include/boost/bind.hpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/boost/bind.hpp b/include/boost/bind.hpp index 5ae4210..258e0df 100644 --- a/include/boost/bind.hpp +++ b/include/boost/bind.hpp @@ -135,10 +135,14 @@ template inline _mfi::dm unwrap(R T::* * pm, int) return _mfi::dm(*pm); } +#if !BOOST_WORKAROUND(__IBMCPP__, BOOST_TESTED_AT(600)) +// IBM/VisualAge 6.0 is not able to handle this overload. template inline _mfi::dm unwrap(R T::* const * pm, int) { return _mfi::dm(*pm); } +#endif + #endif