From 0a3eef53d7eb99bb902c40549d4170a5048c16c0 Mon Sep 17 00:00:00 2001 From: Chandler Carruth Date: Sun, 2 Mar 2014 04:08:41 +0000 Subject: [C++11] Switch all uses of the llvm_move macro to use std::move directly, and remove the macro. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202612 91177308-0d34-0410-b5e6-96231b3b80d8 --- unittests/Support/Path.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'unittests/Support') diff --git a/unittests/Support/Path.cpp b/unittests/Support/Path.cpp index d07bb5616b..c4067b9137 100644 --- a/unittests/Support/Path.cpp +++ b/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 -- cgit v1.2.3