Fix compiler warnings.

Initialize all data members in initializer lists.
Reorder data members in initializer list to have the same order as in the class declaration.
Comment or remove unused parameters and unused variables.
Convert all old style casts to the correct and explicit c++ cast like const_cast, static_cast,
dynamic_cast or reinterpret_cast. In most cases static_cast is used.
This commit is contained in:
Florian Uhlig
2016-03-09 15:52:10 +01:00
parent bb36147099
commit fa7040fe65
20 changed files with 38 additions and 38 deletions

View File

@@ -17,7 +17,7 @@
#include "FairMQLogger.h"
#include "FairMQTestSub.h"
int main(int argc, char** argv)
int main(int /*argc*/, char** /*argv*/)
{
FairMQTestSub testSub;
testSub.CatchSignals();