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 --- utils/yaml-bench/YAMLBench.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'utils/yaml-bench') diff --git a/utils/yaml-bench/YAMLBench.cpp b/utils/yaml-bench/YAMLBench.cpp index f335605527..f20a4ccc81 100644 --- a/utils/yaml-bench/YAMLBench.cpp +++ b/utils/yaml-bench/YAMLBench.cpp @@ -69,7 +69,7 @@ static std::string prettyTag(yaml::Node *N) { if (StringRef(Tag).startswith("tag:yaml.org,2002:")) { std::string Ret = "!!"; Ret += StringRef(Tag).substr(18); - return llvm_move(Ret); + return std::move(Ret); } std::string Ret = "!<"; Ret += Tag; -- cgit v1.2.3