summaryrefslogtreecommitdiff
path: root/boost/phoenix/core/visit_each.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/phoenix/core/visit_each.hpp')
-rw-r--r--boost/phoenix/core/visit_each.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/boost/phoenix/core/visit_each.hpp b/boost/phoenix/core/visit_each.hpp
index ad4ca14f45..9a8971e5f3 100644
--- a/boost/phoenix/core/visit_each.hpp
+++ b/boost/phoenix/core/visit_each.hpp
@@ -22,7 +22,7 @@ namespace boost { namespace phoenix
struct visit_each_impl
{
Visitor& visitor;
- visit_each_impl(Visitor& visitor ) : visitor(visitor) {}
+ visit_each_impl(Visitor& visitor_ ) : visitor(visitor_) {}
template <typename T>
void operator()(T const& t) const