From 46b723b59c620e23444fe920ced94bf43eb89320 Mon Sep 17 00:00:00 2001 From: dzid26 Date: Fri, 14 Jun 2024 01:37:47 +0100 Subject: [PATCH] Print whole program analaysis progress. Less confusing dots. --- lib/cppcheck.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/cppcheck.cpp b/lib/cppcheck.cpp index 70d125f94bec..b86a2bebf543 100644 --- a/lib/cppcheck.cpp +++ b/lib/cppcheck.cpp @@ -868,7 +868,7 @@ unsigned int CppCheck::checkFile(const std::string& filename, const std::string if (!mSettings.quiet && (!mCurrentConfig.empty() || checkCount > 1)) { std::string fixedpath = Path::simplifyPath(filename); fixedpath = Path::toNativeSeparators(std::move(fixedpath)); - mErrorLogger.reportOut("Checking " + fixedpath + ": " + mCurrentConfig + "...", Color::FgGreen); + mErrorLogger.reportOut("Checking... " + fixedpath + ": " + mCurrentConfig, Color::FgGreen); } if (!tokenizer.tokens()) @@ -1480,7 +1480,7 @@ void CppCheck::executeAddonsWholeProgram(const std::list