Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r86165 - trunk/boost/fusion/container/map/detail
From: kaballo86_at_[hidden]
Date: 2013-10-05 14:47:44


Author: aberge
Date: 2013-10-05 14:47:44 EDT (Sat, 05 Oct 2013)
New Revision: 86165
URL: http://svn.boost.org/trac/boost/changeset/86165

Log:
Fixes #9110

Text files modified:
   trunk/boost/fusion/container/map/detail/map_impl.hpp | 8 ++++----
   1 files changed, 4 insertions(+), 4 deletions(-)

Modified: trunk/boost/fusion/container/map/detail/map_impl.hpp
==============================================================================
--- trunk/boost/fusion/container/map/detail/map_impl.hpp Sat Oct 5 10:02:30 2013 (r86164)
+++ trunk/boost/fusion/container/map/detail/map_impl.hpp 2013-10-05 14:47:44 EDT (Sat, 05 Oct 2013) (r86165)
@@ -82,14 +82,14 @@
           : rest_type(rhs.get_base()), element(rhs.element)
         {}
 
- map_impl(typename detail::call_param<Pair>::type element
+ map_impl(typename detail::call_param<Pair>::type element_
           , typename detail::call_param<T>::type... rest)
- : rest_type(rest...), element(element)
+ : rest_type(rest...), element(element_)
         {}
 
- map_impl(Pair&& element, T&&... rest)
+ map_impl(Pair&& element_, T&&... rest)
           : rest_type(std::forward<T>(rest)...)
- , element(std::forward<Pair>(element))
+ , element(std::forward<Pair>(element_))
         {}
 
         template <typename Iterator>


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk