@@ -223,7 +223,7 @@ unsigned int CppCheck::checkFile(const std::string& filename, const std::string
223223 if (!Path::acceptFile (filename))
224224 mSettings .debugwarnings = false ;
225225
226- if (mSettings . terminated ())
226+ if (Settings:: terminated ())
227227 return mExitCode ;
228228
229229 if (!mSettings .quiet ) {
@@ -432,7 +432,7 @@ unsigned int CppCheck::checkFile(const std::string& filename, const std::string
432432 std::list<std::string> configurationError;
433433 for (const std::string &currCfg : configurations) {
434434 // bail out if terminated
435- if (mSettings . terminated ())
435+ if (Settings:: terminated ())
436436 break ;
437437
438438 // Check only a few configurations (default 12), after that bail out, unless --force
@@ -549,7 +549,7 @@ unsigned int CppCheck::checkFile(const std::string& filename, const std::string
549549 if (!result)
550550 continue ;
551551
552- if (!mSettings . terminated ())
552+ if (!Settings:: terminated ())
553553 executeRules (" simple" , mTokenizer );
554554 }
555555
@@ -717,10 +717,10 @@ void CppCheck::checkNormalTokens(const Tokenizer &tokenizer)
717717{
718718 // call all "runChecks" in all registered Check classes
719719 for (Check *check : Check::instances ()) {
720- if (mSettings . terminated ())
720+ if (Settings:: terminated ())
721721 return ;
722722
723- if (tokenizer. isMaxTime ())
723+ if (Tokenizer:: isMaxTime ())
724724 return ;
725725
726726 Timer timerRunChecks (check->name () + " ::runChecks" , mSettings .showtime , &S_timerResults);
0 commit comments