aboutsummaryrefslogtreecommitdiff
path: root/llvm/unittests/Support/Path.cpp
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2014-03-02 04:08:41 +0000
committerChandler Carruth <chandlerc@gmail.com>2014-03-02 04:08:41 +0000
commit002da5db2912dcc4c7f88402a6d8c5901f25d2fd (patch)
tree5f8738f0382b3565bf41070b8ebaf202c667d6a1 /llvm/unittests/Support/Path.cpp
parentc72d9b33aff335f676a34de47a2aa336207b917f (diff)
downloadllvm-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/Support/Path.cpp')
-rw-r--r--llvm/unittests/Support/Path.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/Support/Path.cpp b/llvm/unittests/Support/Path.cpp
index d07bb56..c4067b9 100644
--- a/llvm/unittests/Support/Path.cpp
+++ b/llvm/unittests/Support/Path.cpp
@@ -588,7 +588,7 @@ TEST_F(FileSystemTest, FileMapping) {
EC);
ASSERT_NO_ERROR(EC);
const char *Data = m.const_data();
- fs::mapped_file_region mfrrv(llvm_move(m));
+ fs::mapped_file_region mfrrv(std::move(m));
EXPECT_EQ(mfrrv.const_data(), Data);
}
} // anonymous namespace