Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r71265 - trunk/boost/phoenix/core
From: thom.heller_at_[hidden]
Date: 2011-04-15 01:23:05


Author: theller
Date: 2011-04-15 01:23:05 EDT (Fri, 15 Apr 2011)
New Revision: 71265
URL: http://svn.boost.org/trac/boost/changeset/71265

Log:
[phoenix] fixed some gcc 4.4 hickups
Text files modified:
   trunk/boost/phoenix/core/actor.hpp | 6 +++---
   1 files changed, 3 insertions(+), 3 deletions(-)

Modified: trunk/boost/phoenix/core/actor.hpp
==============================================================================
--- trunk/boost/phoenix/core/actor.hpp (original)
+++ trunk/boost/phoenix/core/actor.hpp 2011-04-15 01:23:05 EDT (Fri, 15 Apr 2011)
@@ -204,7 +204,7 @@
             typedef vector1<const actor<Expr> *> env_type;
             env_type env = {this};
             
- return phoenix::eval(*this, context(env, default_actions()));
+ return phoenix::eval(*this, phoenix::context(env, default_actions()));
         }
 
         typename result_of::actor<proto_base_expr>::type
@@ -213,7 +213,7 @@
             typedef vector1<const actor<Expr> *> env_type;
             env_type env = {this};
             
- return phoenix::eval(*this, context(env, default_actions()));
+ return phoenix::eval(*this, phoenix::context(env, default_actions()));
         }
 
         template <typename Env>
@@ -227,7 +227,7 @@
>::result_type
         eval(Env const & env) const
         {
- return phoenix::eval(*this, context(env, default_actions()));
+ return phoenix::eval(*this, phoenix::context(env, default_actions()));
         }
         
         // Bring in the rest


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