From 7312885c871b77cbf8d08136bfb79e70e3c40a9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Sat, 30 Jun 2012 16:30:56 +0200 Subject: [PATCH] updated --doc output from CheckLeakAutoVar --- lib/checkleakautovar.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/checkleakautovar.h b/lib/checkleakautovar.h index db2160327..3ada99258 100644 --- a/lib/checkleakautovar.h +++ b/lib/checkleakautovar.h @@ -124,12 +124,11 @@ private: } std::string myName() const { - return "CheckLeakAutoVar"; + return "Memory leaks (function variables)"; } std::string classInfo() const { - return "Checking that detect leaks when a local variable is allocated but not deallocated. " - "This checking complements the other checking for memory leaks that Cppcheck has."; + return "Detect when a function variable is allocated but not deallocated."; } }; /// @}