From ec9c52921094bb37b5f23267e9cef47c0d257702 Mon Sep 17 00:00:00 2001 From: Eric Niebler Date: Sun, 23 Sep 2012 18:16:38 +0000 Subject: [PATCH] gcc-4.4 doesn't correctly implement sfinae-for-expressions [SVN r80674] --- include/boost/config/compiler/gcc.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/config/compiler/gcc.hpp b/include/boost/config/compiler/gcc.hpp index f42fd790..de8875cd 100644 --- a/include/boost/config/compiler/gcc.hpp +++ b/include/boost/config/compiler/gcc.hpp @@ -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