From 74fae199f6bc8df8458beec3d38ed8e371a74326 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Thu, 22 Apr 2004 15:57:12 +0000 Subject: [PATCH] Disabled bind for CW8 as it cannot parse the overloads. [SVN r22685] --- include/boost/bind.hpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/boost/bind.hpp b/include/boost/bind.hpp index 897cbcc..aac5907 100644 --- a/include/boost/bind.hpp +++ b/include/boost/bind.hpp @@ -128,6 +128,8 @@ template inline F & unwrap(reference_wrapper const * f, int) return f->get(); } +#if !( defined(__MWERKS__) && BOOST_WORKAROUND(__MWERKS__, <= 0x3003) ) + template inline _mfi::dm unwrap(R T::* * pm, int) { return _mfi::dm(*pm); @@ -138,6 +140,8 @@ template inline _mfi::dm unwrap(R T::* const * pm, int) return _mfi::dm(*pm); } +#endif + // listN class list0