summaryrefslogtreecommitdiff
path: root/unittests/ADT/SmallPtrSetTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'unittests/ADT/SmallPtrSetTest.cpp')
-rw-r--r--unittests/ADT/SmallPtrSetTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/unittests/ADT/SmallPtrSetTest.cpp b/unittests/ADT/SmallPtrSetTest.cpp
index 675f337306..fdd1cbb600 100644
--- a/unittests/ADT/SmallPtrSetTest.cpp
+++ b/unittests/ADT/SmallPtrSetTest.cpp
@@ -143,7 +143,7 @@ TEST(SmallPtrSetTest, CopyAndMoveTest) {
s3.insert(&buf[5]);
s3.insert(&buf[6]);
s3.insert(&buf[7]);
- s1 = llvm_move(s3);
+ s1 = std::move(s3);
EXPECT_EQ(8U, s1.size());
EXPECT_TRUE(s3.empty());
for (int i = 0; i < 8; ++i)