Remove warnings about unused parameters.

This commit is contained in:
Florian Uhlig 2016-08-11 18:08:24 +02:00
parent bed58891ea
commit 827c8dcd45

View File

@ -125,7 +125,7 @@ class FairMQProgOptions : public FairProgOptions
int UpdateChannelMap(const std::string& channelName, int index, const std::string& member, int val);
// for cases other than int and string
template<typename T>
int UpdateChannelMap(const std::string& channelName, int index, const std::string& member, T val)
int UpdateChannelMap(const std::string& /*channelName*/, int /*index*/, const std::string& /*member*/, T /*val*/)
{
return 0;
}