2
0
mirror of https://github.com/boostorg/phoenix.git synced 2026-02-14 13:02:10 +00:00

[phoenix] fixed some gcc 4.4 hickups

[SVN r71265]
This commit is contained in:
Thomas Heller
2011-04-15 05:23:05 +00:00
parent 5dd6792af5
commit 2fed6a0460

View File

@@ -204,7 +204,7 @@ namespace boost { namespace phoenix
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 @@ namespace boost { namespace phoenix
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 @@ namespace boost { namespace phoenix
>::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