Merge pull request #93 from simartin/clang_warn_fix

Avoid clang warning.
This commit is contained in:
PKEuS 2012-04-07 13:13:57 -07:00
commit f5bba510b3
2 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@
#include "pathmatch.h"
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;
CppCheck::CppCheck(ErrorLogger &errorLogger, bool useGlobalSuppressions)
: _useGlobalSuppressions(useGlobalSuppressions), _errorLogger(errorLogger), exitcode(0)
: exitcode(0), _useGlobalSuppressions(useGlobalSuppressions), _errorLogger(errorLogger)
{
}