mirror of
https://github.com/boostorg/unordered.git
synced 2025-07-29 19:07:15 +02:00
s/std::move/type_policy::move in a couple of places
This commit is contained in:
@ -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){
|
||||
|
Reference in New Issue
Block a user