mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-02 00:37:09 +00:00
YAMLBench.cpp: Use llvm_move instead of std::move also here.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193011 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
68ad65c25d
commit
31544debc3
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user