From 75a29768b0bfbf0c5ecea04a910261c767f2acba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Wed, 11 Apr 2012 16:01:46 +0000 Subject: [PATCH] Fully qualifified boost move calls [SVN r77914] --- include/boost/container/detail/advanced_insert_int.hpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/boost/container/detail/advanced_insert_int.hpp b/include/boost/container/detail/advanced_insert_int.hpp index 978a819..0d198b0 100644 --- a/include/boost/container/detail/advanced_insert_int.hpp +++ b/include/boost/container/detail/advanced_insert_int.hpp @@ -267,7 +267,7 @@ struct advanced_insert_aux_emplace typedef typename base_t::index_tuple_t index_tuple_t; explicit advanced_insert_aux_emplace(A &a, Args&&... args) - : base_t(a, boost::forward(args)...) + : base_t(a, ::boost::forward(args)...) {} ~advanced_insert_aux_emplace() @@ -290,7 +290,7 @@ struct advanced_insert_aux_emplace alloc_traits::construct(this->a_, vp, ::boost::container::container_detail::stored_ref::forward(get(this->args_))...); scoped_destructor d(this->a_, vp); - *p = boost::move(*vp); + *p = ::boost::move(*vp); d.release(); this->used_ = true; } @@ -307,7 +307,7 @@ struct advanced_insert_aux_emplace alloc_traits::construct(this->a_, vp, ::boost::container::container_detail::stored_ref::forward(get(this->args_))...); try { - *p = boost::move(*vp); + *p = ::boost::move(*vp); } catch (...) { alloc_traits::destroy(this->a_, vp); throw; @@ -413,7 +413,7 @@ struct BOOST_PP_CAT(BOOST_PP_CAT(advanced_insert_aux_emplace, n), arg) alloc_traits::construct(this->a_, vp \ BOOST_PP_ENUM_TRAILING(n, BOOST_CONTAINER_PP_MEMBER_FORWARD, _)); \ scoped_destructor d(this->a_, vp); \ - *p = boost::move(*vp); \ + *p = ::boost::move(*vp); \ d.release(); \ this->used_ = true; \ } \ @@ -430,7 +430,7 @@ struct BOOST_PP_CAT(BOOST_PP_CAT(advanced_insert_aux_emplace, n), arg) alloc_traits::construct(this->a_, vp \ BOOST_PP_ENUM_TRAILING(n, BOOST_CONTAINER_PP_MEMBER_FORWARD, _)); \ scoped_destructor d(this->a_, vp); \ - *p = boost::move(*vp); \ + *p = ::boost::move(*vp); \ d.release(); \ this->used_ = true; \ } \