Merge pull request #93 from simartin/clang_warn_fix
Avoid clang warning.
This commit is contained in:
commit
f5bba510b3
|
@ -33,7 +33,7 @@
|
|||
#include "pathmatch.h"
|
||||
|
||||
CppCheckExecutor::CppCheckExecutor()
|
||||
: time1(0), errorlist(false), _settings(0)
|
||||
: _settings(0), time1(0), errorlist(false)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
@ -39,7 +39,7 @@ static const char ExtraVersion[] = "";
|
|||
static TimerResults S_timerResults;
|
||||
|
||||
CppCheck::CppCheck(ErrorLogger &errorLogger, bool useGlobalSuppressions)
|
||||
: _useGlobalSuppressions(useGlobalSuppressions), _errorLogger(errorLogger), exitcode(0)
|
||||
: exitcode(0), _useGlobalSuppressions(useGlobalSuppressions), _errorLogger(errorLogger)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue