$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r53108 - trunk/boost/config/compiler
From: bdawes_at_[hidden]
Date: 2009-05-19 09:34:05
Author: bemandawes
Date: 2009-05-19 09:34:04 EDT (Tue, 19 May 2009)
New Revision: 53108
URL: http://svn.boost.org/trac/boost/changeset/53108
Log:
Aways define BOOST_NO_SCOPED_ENUMS until GCC Bugzilla Bug 38064 gets fixed.
Text files modified: 
   trunk/boost/config/compiler/gcc.hpp |     5 ++++-                                   
   1 files changed, 4 insertions(+), 1 deletions(-)
Modified: trunk/boost/config/compiler/gcc.hpp
==============================================================================
--- trunk/boost/config/compiler/gcc.hpp	(original)
+++ trunk/boost/config/compiler/gcc.hpp	2009-05-19 09:34:04 EDT (Tue, 19 May 2009)
@@ -109,6 +109,9 @@
 #define BOOST_NO_LAMBDAS
 #define BOOST_NO_NULLPTR
 #define BOOST_NO_RAW_LITERALS
+// scoped enums have a serious bug in 4.4.0, so define BOOST_NO_SCOPED_ENUMS until it
+// gets fixed. See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38064
+#define BOOST_NO_SCOPED_ENUMS
 #define BOOST_NO_TEMPLATE_ALIASES
 
 // C++0x features in 4.3.n and later
@@ -145,7 +148,7 @@
 #  define BOOST_NO_DEFAULTED_FUNCTIONS
 #  define BOOST_NO_DELETED_FUNCTIONS
 #  define BOOST_NO_INITIALIZER_LISTS
-#  define BOOST_NO_SCOPED_ENUMS
+#  define BOOST_NO_SCOPED_ENUMS  
 #  define BOOST_NO_UNICODE_LITERALS
 #endif