forked from OSchip/llvm-project
[dsymutil] Remove extraneous std::move of local in return statement.
llvm-svn: 238790
This commit is contained in:
parent
a0269b6d20
commit
f30ad9bb2a
|
@ -201,7 +201,7 @@ template <> struct MappingTraits<dsymutil::DebugMapObject> {
|
||||||
for (auto &Entry : Entries)
|
for (auto &Entry : Entries)
|
||||||
Res[Entry.first] = Entry.second;
|
Res[Entry.first] = Entry.second;
|
||||||
|
|
||||||
return std::move(Res);
|
return Res;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::vector<dsymutil::DebugMapObject::YAMLSymbolMapping> Entries;
|
std::vector<dsymutil::DebugMapObject::YAMLSymbolMapping> Entries;
|
||||||
|
|
Loading…
Reference in New Issue