diff options
| author | Chandler Carruth <chandlerc@gmail.com> | 2014-03-02 04:08:41 +0000 |
|---|---|---|
| committer | Chandler Carruth <chandlerc@gmail.com> | 2014-03-02 04:08:41 +0000 |
| commit | 002da5db2912dcc4c7f88402a6d8c5901f25d2fd (patch) | |
| tree | 5f8738f0382b3565bf41070b8ebaf202c667d6a1 /llvm/unittests/ADT/SmallPtrSetTest.cpp | |
| parent | c72d9b33aff335f676a34de47a2aa336207b917f (diff) | |
| download | llvm-002da5db2912dcc4c7f88402a6d8c5901f25d2fd.zip llvm-002da5db2912dcc4c7f88402a6d8c5901f25d2fd.tar.gz llvm-002da5db2912dcc4c7f88402a6d8c5901f25d2fd.tar.bz2 | |
[C++11] Switch all uses of the llvm_move macro to use std::move
directly, and remove the macro.
llvm-svn: 202612
Diffstat (limited to 'llvm/unittests/ADT/SmallPtrSetTest.cpp')
| -rw-r--r-- | llvm/unittests/ADT/SmallPtrSetTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/ADT/SmallPtrSetTest.cpp b/llvm/unittests/ADT/SmallPtrSetTest.cpp index 675f337..fdd1cbb 100644 --- a/llvm/unittests/ADT/SmallPtrSetTest.cpp +++ b/llvm/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) |
