Fix compiler warnings. Mostly unused parameters have been removed.

This commit is contained in:
Florian Uhlig
2015-12-15 21:56:41 +01:00
parent 2060f0b1d7
commit d254efb91f
6 changed files with 8 additions and 8 deletions

View File

@@ -79,7 +79,7 @@ FairMQPollerZMQ::FairMQPollerZMQ(unordered_map<string, vector<FairMQChannel>>& c
int index = 0;
for (string channel : channelList)
{
for (int i = 0; i < channelsMap.at(channel).size(); ++i)
for (unsigned int i = 0; i < channelsMap.at(channel).size(); ++i)
{
index = fOffsetMap[channel] + i;