Replace boost::move with std::move

This commit is contained in:
Christian Mazakas
2023-08-28 12:59:00 -07:00
parent 11322de29f
commit adb91ac06d
13 changed files with 110 additions and 110 deletions

View File

@@ -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);