[dsymutil] Remove extraneous std::move of local in return statement.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@238790 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Frederic Riss 2015-06-01 22:03:05 +00:00
parent 91e4ebaf74
commit a116a41be0

View File

@ -201,7 +201,7 @@ template <> struct MappingTraits<dsymutil::DebugMapObject> {
for (auto &Entry : Entries)
Res[Entry.first] = Entry.second;
return std::move(Res);
return Res;
}
std::vector<dsymutil::DebugMapObject::YAMLSymbolMapping> Entries;