forked from boostorg/unordered
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){
|
x.for_all_elements([this](value_type* p){
|
||||||
unchecked_insert(std::move(*p));
|
unchecked_insert(type_policy::move(*p));
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
BOOST_CATCH(...){
|
BOOST_CATCH(...){
|
||||||
@ -985,7 +985,7 @@ public:
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
auto const move_element=[this](value_type* p){
|
auto const move_element=[this](value_type* p){
|
||||||
unchecked_insert(std::move(*p));
|
unchecked_insert(type_policy::move(*p));
|
||||||
};
|
};
|
||||||
|
|
||||||
if(this!=&x){
|
if(this!=&x){
|
||||||
|
Reference in New Issue
Block a user