1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

YAMLBench.cpp: Use llvm_move instead of std::move also here.

llvm-svn: 193011
This commit is contained in:
NAKAMURA Takumi 2013-10-18 23:25:39 +00:00
parent 3f73b2d106
commit 386d747bcd

View 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;