1
0
forked from boostorg/bind

Apply suggested IBM C++ fix. Refs #5792.

[SVN r75391]
This commit is contained in:
Peter Dimov
2011-11-07 18:25:33 +00:00
parent 27003baf12
commit da3580cc14

View File

@@ -1680,7 +1680,7 @@ template< class R, class T > struct add_cref< R (T::*) (), 1 >
typedef void type;
};
#if !( defined(__IBMCPP__) && BOOST_WORKAROUND( __IBMCPP__, BOOST_TESTED_AT(600) ) )
#if !defined(__IBMCPP__) || __IBMCPP_FUNC_CV_TMPL_ARG_DEDUCTION
template< class R, class T > struct add_cref< R (T::*) () const, 1 >
{