Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r80674 - trunk/boost/config/compiler
From: eric_at_[hidden]
Date: 2012-09-23 14:16:38


Author: eric_niebler
Date: 2012-09-23 14:16:38 EDT (Sun, 23 Sep 2012)
New Revision: 80674
URL: http://svn.boost.org/trac/boost/changeset/80674

Log:
gcc-4.4 doesn't correctly implement sfinae-for-expressions
Text files modified:
   trunk/boost/config/compiler/gcc.hpp | 2 +-
   1 files changed, 1 insertions(+), 1 deletions(-)

Modified: trunk/boost/config/compiler/gcc.hpp
==============================================================================
--- trunk/boost/config/compiler/gcc.hpp (original)
+++ trunk/boost/config/compiler/gcc.hpp 2012-09-23 14:16:38 EDT (Sun, 23 Sep 2012)
@@ -184,7 +184,7 @@
 # define BOOST_NO_CXX11_DELETED_FUNCTIONS
 #endif
 
-#if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 4)
+#if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 5)
 # define BOOST_NO_SFINAE_EXPR
 #endif
 


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