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

boost/phoenix/scoped/scoped_environment.hpp fix shadow vars

This commit is contained in:
John Fletcher
2014-02-07 09:25:14 +00:00
parent 51ab7c0e1c
commit b795fd4a3e

View File

@@ -35,13 +35,13 @@ namespace boost { namespace phoenix
typedef Map map_type;
scoped_environment(
Env const & env
, OuterEnv const &outer_env
, Locals const &locals
Env const & env_
, OuterEnv const &outer_env_
, Locals const &locals_
)
: env(env)
, outer_env(outer_env)
, locals(locals)
: env(env_)
, outer_env(outer_env_)
, locals(locals_)
{}
scoped_environment(scoped_environment const & o)