$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r75391 - trunk/boost/bind
From: pdimov_at_[hidden]
Date: 2011-11-07 13:25:33
Author: pdimov
Date: 2011-11-07 13:25:33 EST (Mon, 07 Nov 2011)
New Revision: 75391
URL: http://svn.boost.org/trac/boost/changeset/75391
Log:
Apply suggested IBM C++ fix. Refs #5792.
Text files modified:
trunk/boost/bind/bind.hpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/boost/bind/bind.hpp
==============================================================================
--- trunk/boost/bind/bind.hpp (original)
+++ trunk/boost/bind/bind.hpp 2011-11-07 13:25:33 EST (Mon, 07 Nov 2011)
@@ -1680,7 +1680,7 @@
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 >
{