From 2cbbc65691fbe05fa74359662fb7770ad5f34533 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Sun, 31 May 2009 07:48:35 +0200 Subject: [PATCH] cppcheck: removed the 'this may take several minutes' when checking unused functions. The check is much faster nowadays --- src/cppcheck.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cppcheck.cpp b/src/cppcheck.cpp index 36682b8a8..de79ccf9a 100644 --- a/src/cppcheck.cpp +++ b/src/cppcheck.cpp @@ -355,7 +355,7 @@ unsigned int CppCheck::check() { _errout.str(""); if (_settings._errorsOnly == false) - _errorLogger->reportOut("Checking usage of global functions (this may take several minutes).."); + _errorLogger->reportOut("Checking usage of global functions.."); _checkFunctionUsage.check(); }