Skip to content

Commit

Permalink
Merge pull request #678 from ess-dmsc/missing_std
Browse files Browse the repository at this point in the history
added missing std::
  • Loading branch information
mattclarke authored Feb 9, 2023
2 parents ba8d723 + 6a167cd commit 0b5fa2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/JobCreator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ void addStreamSourceToWriterModule(vector<ModuleSettings> &StreamSettingsList,
auto FoundModule = WriterModule::Registry::find(StreamSettings.Module);
Source ThisSource(StreamSettings.Source, FoundModule.second.Id,
FoundModule.second.Name, StreamSettings.Topic,
move(StreamSettings.WriterModule));
std::move(StreamSettings.WriterModule));
Task->addSource(std::move(ThisSource));
} catch (std::runtime_error const &E) {
LOG_WARN(
Expand Down

0 comments on commit 0b5fa2f

Please sign in to comment.