Boost logo

Boost-Commit :

From: hartmut.kaiser_at_[hidden]
Date: 2008-05-09 10:32:24


Author: hkaiser
Date: 2008-05-09 10:32:23 EDT (Fri, 09 May 2008)
New Revision: 45249
URL: http://svn.boost.org/trac/boost/changeset/45249

Log:
Spirit: Fixed gcc compilation problems.
Text files modified:
   trunk/boost/spirit/home/support/detail/action_dispatch.hpp | 6 +++---
   1 files changed, 3 insertions(+), 3 deletions(-)

Modified: trunk/boost/spirit/home/support/detail/action_dispatch.hpp
==============================================================================
--- trunk/boost/spirit/home/support/detail/action_dispatch.hpp (original)
+++ trunk/boost/spirit/home/support/detail/action_dispatch.hpp 2008-05-09 10:32:23 EDT (Fri, 09 May 2008)
@@ -29,7 +29,7 @@
     // wrap any non-fusion sequence into a fusion sequence (done by pass_value)
     // and pass through any fusion sequence.
     template <typename Eval, typename Attribute, typename Context>
- bool action_dispatch(phoenix::actor<Eval> const& f
+ bool action_dispatch_impl(phoenix::actor<Eval> const& f
       , Attribute& attr, Context& context, mpl::true_)
     {
         bool pass = true;
@@ -42,7 +42,7 @@
     // has to be treated as being a single value in any case (even if it
     // actually already is a fusion sequence on its own).
     template <typename Eval, typename Attribute, typename Context>
- bool action_dispatch(phoenix::actor<Eval> const& f
+ bool action_dispatch_impl(phoenix::actor<Eval> const& f
       , Attribute& attr, Context& context, mpl::false_)
     {
         bool pass = true;
@@ -55,7 +55,7 @@
     bool action_dispatch(phoenix::actor<Eval> const& f
       , Attribute& attr, Context& context)
     {
- return action_dispatch(f, attr, context, IsSequence());
+ return action_dispatch_impl(f, attr, context, IsSequence());
     }
 
     // specializations for plain function pointers taking a different number of


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