$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r55593 - trunk/boost/spirit/home/support/detail
From: hartmut.kaiser_at_[hidden]
Date: 2009-08-14 18:26:41
Author: hkaiser
Date: 2009-08-14 18:26:41 EDT (Fri, 14 Aug 2009)
New Revision: 55593
URL: http://svn.boost.org/trac/boost/changeset/55593
Log:
Spirit: working around a mac specific problem 
Text files modified: 
   trunk/boost/spirit/home/support/detail/scoped_enum_emulation.hpp |     4 ++--                                    
   1 files changed, 2 insertions(+), 2 deletions(-)
Modified: trunk/boost/spirit/home/support/detail/scoped_enum_emulation.hpp
==============================================================================
--- trunk/boost/spirit/home/support/detail/scoped_enum_emulation.hpp	(original)
+++ trunk/boost/spirit/home/support/detail/scoped_enum_emulation.hpp	2009-08-14 18:26:41 EDT (Fri, 14 Aug 2009)
@@ -20,9 +20,9 @@
 # if !defined(BOOST_NO_SCOPED_ENUMS)
 #  define BOOST_NO_SCOPED_ENUMS
 # endif 
-# define BOOST_SCOPED_ENUM_START(name) struct name { enum enum_t
+# define BOOST_SCOPED_ENUM_START(name) struct name { enum enum_type
 # define BOOST_SCOPED_ENUM_END };
-# define BOOST_SCOPED_ENUM(name) name::enum_t
+# define BOOST_SCOPED_ENUM(name) name::enum_type
 #endif
 
 #endif