Removed un-needed calls to std::move

These calls were throwing a pessimistic move error and stopping compilation.
This commit is contained in:
Tom Peoples
2019-09-19 17:30:21 +10:00
parent 71433c67b1
commit 018a9bc804
4 changed files with 11 additions and 3 deletions
+1 -1
View File
@@ -122,7 +122,7 @@ template <typename Key, typename Value> struct CSVFilesParser
util::Log() << "Loaded " << filename << " with " << result.size() << "values";
return std::move(result);
return result;
}
catch (const boost::exception &e)
{