$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r57795 - branches/release/boost/proto
From: eric_at_[hidden]
Date: 2009-11-19 17:45:18
Author: eric_niebler
Date: 2009-11-19 17:45:17 EST (Thu, 19 Nov 2009)
New Revision: 57795
URL: http://svn.boost.org/trac/boost/changeset/57795
Log:
work around for EDG compiler bug with function types and cv-qualification
Text files modified: 
   branches/release/boost/proto/proto_fwd.hpp |     5 +++--                                   
   1 files changed, 3 insertions(+), 2 deletions(-)
Modified: branches/release/boost/proto/proto_fwd.hpp
==============================================================================
--- branches/release/boost/proto/proto_fwd.hpp	(original)
+++ branches/release/boost/proto/proto_fwd.hpp	2009-11-19 17:45:17 EST (Thu, 19 Nov 2009)
@@ -47,13 +47,14 @@
 
 #ifndef BOOST_PROTO_BROKEN_CONST_OVERLOADS
 # if BOOST_WORKAROUND(__GNUC__, == 3) \
-  || BOOST_WORKAROUND(__EDG_VERSION__, BOOST_TESTED_AT(306))
+  || BOOST_WORKAROUND(__EDG_VERSION__, BOOST_TESTED_AT(310))
 #  define BOOST_PROTO_BROKEN_CONST_OVERLOADS
 # endif
 #endif
 
 #ifndef BOOST_PROTO_BROKEN_CONST_QUALIFIED_FUNCTIONS
-# if BOOST_WORKAROUND(__GNUC__, == 3)
+# if BOOST_WORKAROUND(__GNUC__, == 3) \
+  || BOOST_WORKAROUND(__EDG_VERSION__, BOOST_TESTED_AT(310))
 #  define BOOST_PROTO_BROKEN_CONST_QUALIFIED_FUNCTIONS
 # endif
 #endif