mirror of
https://github.com/boostorg/unordered.git
synced 2025-10-08 21:51:00 +02:00
Replace boost::move with std::move
This commit is contained in:
@@ -44,7 +44,7 @@ template <class T> struct move_assign_base : public test::exception_base
|
||||
test::exceptions_enable disable_exceptions(false);
|
||||
T y1 = y;
|
||||
disable_exceptions.release();
|
||||
x1 = boost::move(y1);
|
||||
x1 = std::move(y1);
|
||||
|
||||
DISABLE_EXCEPTIONS;
|
||||
test::check_container(x1, y_values);
|
||||
|
Reference in New Issue
Block a user