YAMLBench.cpp: Use llvm_move instead of std::move also here.
[oota-llvm.git] / utils / yaml-bench / YAMLBench.cpp
index f20a4ccc8198f2fdbb285270e3c7bee1d77c7877..f3356055276bd5ed6ce3e87c6a22621fa6f205d5 100644 (file)
@@ -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 std::move(Ret);
+    return llvm_move(Ret);
   }
   std::string Ret = "!<";
   Ret += Tag;