From f669a5a45df02c697d9b96b3cbcc8a99d675acec Mon Sep 17 00:00:00 2001 From: Reijo Tomperi Date: Thu, 11 Dec 2008 20:28:35 +0000 Subject: [PATCH] Minor bug fix, CppCheck::Check didn't reset error list after all checking was done. --- cppcheck.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cppcheck.cpp b/cppcheck.cpp index cd209722c..89a110338 100644 --- a/cppcheck.cpp +++ b/cppcheck.cpp @@ -197,7 +197,8 @@ void CppCheck::check() _checkFunctionUsage.check(); } - + + _errorList.clear(); }