updated --doc output from CheckLeakAutoVar

This commit is contained in:
Daniel Marjamäki 2012-06-30 16:30:56 +02:00
parent 325414e354
commit 7312885c87
1 changed files with 2 additions and 3 deletions

View File

@ -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.";
}
};
/// @}