Avoid clang warning.

This commit is contained in:
Simon Martin 2012-04-07 15:36:45 +02:00
parent a399a22b09
commit 3ccdd16b01
2 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@
#include "pathmatch.h" #include "pathmatch.h"
CppCheckExecutor::CppCheckExecutor() CppCheckExecutor::CppCheckExecutor()
: time1(0), errorlist(false), _settings(0) : _settings(0), time1(0), errorlist(false)
{ {
} }

View File

@ -39,7 +39,7 @@ static const char ExtraVersion[] = "";
static TimerResults S_timerResults; static TimerResults S_timerResults;
CppCheck::CppCheck(ErrorLogger &errorLogger, bool useGlobalSuppressions) CppCheck::CppCheck(ErrorLogger &errorLogger, bool useGlobalSuppressions)
: _useGlobalSuppressions(useGlobalSuppressions), _errorLogger(errorLogger), exitcode(0) : exitcode(0), _useGlobalSuppressions(useGlobalSuppressions), _errorLogger(errorLogger)
{ {
} }