diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-03-06 22:56:56 +0100 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-03-06 22:56:56 +0100 |
commit | f0cccbe3285c039553e1fd8b5a5c7830d6087974 (patch) | |
tree | 57a0902484ec5c8ba3b9a8e7089ed42f58b6a580 /asl/containers/hash_set_tests.cpp | |
parent | 54affafd86e2b7f387345c08e8c7285c775d75e5 (diff) |
Replace ASL_MOVE, ASL_FWD, and ASL_FWD_LIKE by their std:: equivalent
This is because some compiler stuff and diagnostics tools rely on those
symboles being what they are.
Diffstat (limited to 'asl/containers/hash_set_tests.cpp')
-rw-r--r-- | asl/containers/hash_set_tests.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/asl/containers/hash_set_tests.cpp b/asl/containers/hash_set_tests.cpp index d9462d5..515fe76 100644 --- a/asl/containers/hash_set_tests.cpp +++ b/asl/containers/hash_set_tests.cpp @@ -170,7 +170,7 @@ ASL_TEST(move) set1.insert(i); } - asl::hash_set<int> set2 = ASL_MOVE(set1); + asl::hash_set<int> set2 = std::move(set1); ASL_TEST_EXPECT(set2.size() == 100); for (int i = 0; i < 100; ++i) @@ -178,7 +178,7 @@ ASL_TEST(move) ASL_TEST_EXPECT(set2.contains(i)); } - set1 = ASL_MOVE(set2); + set1 = std::move(set2); ASL_TEST_EXPECT(set1.size() == 100); for (int i = 0; i < 100; ++i) |