From 8a9aab57c046217f93a4eba353b3ce383aaa57aa Mon Sep 17 00:00:00 2001 From: joaquintides Date: Fri, 7 Oct 2022 12:15:24 +0200 Subject: [PATCH] s/std::move/type_policy::move in a couple of places --- include/boost/unordered/detail/foa.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/unordered/detail/foa.hpp b/include/boost/unordered/detail/foa.hpp index 95f92395..a48e777f 100644 --- a/include/boost/unordered/detail/foa.hpp +++ b/include/boost/unordered/detail/foa.hpp @@ -923,7 +923,7 @@ public: */ x.for_all_elements([this](value_type* p){ - unchecked_insert(std::move(*p)); + unchecked_insert(type_policy::move(*p)); }); } BOOST_CATCH(...){ @@ -985,7 +985,7 @@ public: */ auto const move_element=[this](value_type* p){ - unchecked_insert(std::move(*p)); + unchecked_insert(type_policy::move(*p)); }; if(this!=&x){