Removed un-needed calls to std::move
These calls were throwing a pessimistic move error and stopping compilation.
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user