diff --git a/include/updater/csv_file_parser.hpp b/include/updater/csv_file_parser.hpp index c9841798e..92c3dcabb 100644 --- a/include/updater/csv_file_parser.hpp +++ b/include/updater/csv_file_parser.hpp @@ -78,7 +78,7 @@ template struct CSVFilesParser util::Log() << "In total loaded " << csv_filenames.size() << " file(s) with a total of " << lookup.size() << " unique values"; - return LookupTable{lookup}; + return LookupTable{std::move(lookup)}; } catch (const std::exception &e) // TBB should capture to std::exception_ptr and automatically rethrow in this thread.