From b795fd4a3e9536f7b65c0ec44e539f87df296430 Mon Sep 17 00:00:00 2001 From: John Fletcher Date: Fri, 7 Feb 2014 09:25:14 +0000 Subject: [PATCH] boost/phoenix/scoped/scoped_environment.hpp fix shadow vars --- include/boost/phoenix/scope/scoped_environment.hpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/include/boost/phoenix/scope/scoped_environment.hpp b/include/boost/phoenix/scope/scoped_environment.hpp index 94e5bd3..5fcb245 100644 --- a/include/boost/phoenix/scope/scoped_environment.hpp +++ b/include/boost/phoenix/scope/scoped_environment.hpp @@ -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)