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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user