FairMQ: fix const qualifier for DeviceRunner

This commit is contained in:
Alexey Rybalchenko
2017-10-04 16:08:58 +02:00
committed by Mohammad Al-Turany
parent 1bc5771bf3
commit d175a732a6
5 changed files with 7 additions and 5 deletions

View File

@@ -12,7 +12,7 @@
using namespace fair::mq;
DeviceRunner::DeviceRunner(int argc, char const* argv[])
DeviceRunner::DeviceRunner(int argc, char* const argv[])
: fRawCmdLineArgs{tools::ToStrVector(argc, argv, false)}
, fPluginManager{PluginManager::MakeFromCommandLineOptions(fRawCmdLineArgs)}
, fDevice{nullptr}