mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-15 09:31:45 +00:00
Fix compiler warnings. Mostly unused parameters have been removed.
This commit is contained in:
@@ -142,7 +142,7 @@ int main(int argc, char** argv)
|
||||
|
||||
merger.SetTransport(transportFactory);
|
||||
|
||||
for (int i = 0; i < options.inputAddress.size(); ++i)
|
||||
for (unsigned int i = 0; i < options.inputAddress.size(); ++i)
|
||||
{
|
||||
FairMQChannel inputChannel(options.inputSocketType.at(i), options.inputMethod.at(i), options.inputAddress.at(i));
|
||||
inputChannel.UpdateSndBufSize(options.inputBufSize.at(i));
|
||||
|
Reference in New Issue
Block a user