Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r76263 - trunk/boost/intrusive/detail
From: igaztanaga_at_[hidden]
Date: 2012-01-01 13:48:22


Author: igaztanaga
Date: 2012-01-01 13:48:22 EST (Sun, 01 Jan 2012)
New Revision: 76263
URL: http://svn.boost.org/trac/boost/changeset/76263

Log:
Fix for Intel 11 compiler
Text files modified:
   trunk/boost/intrusive/detail/has_member_function_callable_with.hpp | 3 +++
   1 files changed, 3 insertions(+), 0 deletions(-)

Modified: trunk/boost/intrusive/detail/has_member_function_callable_with.hpp
==============================================================================
--- trunk/boost/intrusive/detail/has_member_function_callable_with.hpp (original)
+++ trunk/boost/intrusive/detail/has_member_function_callable_with.hpp 2012-01-01 13:48:22 EST (Sun, 01 Jan 2012)
@@ -25,6 +25,8 @@
       //wrong SFINAE for GCC 4.2/4.3
       #if defined(__GNUC__) && !defined(__clang__) && ((__GNUC__*100 + __GNUC_MINOR__*10) >= 340) && ((__GNUC__*100 + __GNUC_MINOR__*10) <= 430)
       #define BOOST_INTRUSIVE_DETAIL_HAS_MEMBER_FUNCTION_CALLABLE_WITH_0_ARGS_UNSUPPORTED
+ #elif defined(BOOST_INTEL) && (BOOST_INTEL < 1200 )
+ #define BOOST_INTRUSIVE_DETAIL_HAS_MEMBER_FUNCTION_CALLABLE_WITH_0_ARGS_UNSUPPORTED
       #endif
 
       namespace boost_intrusive_has_member_function_callable_with {
@@ -125,6 +127,7 @@
             };
 
             #else
+
             //Special case for 0 args
             template< class F
                   , std::size_t N =


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk