Refactor lib/checkmemoryleak.cpp
This commit is contained in:
parent
94048d93f6
commit
c5e14ad590
|
@ -2251,8 +2251,7 @@ void CheckMemoryLeakInClass::check()
|
||||||
const std::size_t classes = symbolDatabase->classAndStructScopes.size();
|
const std::size_t classes = symbolDatabase->classAndStructScopes.size();
|
||||||
for (std::size_t i = 0; i < classes; ++i) {
|
for (std::size_t i = 0; i < classes; ++i) {
|
||||||
const Scope * scope = symbolDatabase->classAndStructScopes[i];
|
const Scope * scope = symbolDatabase->classAndStructScopes[i];
|
||||||
std::list<Variable>::const_iterator var;
|
for (std::list<Variable>::const_iterator var = scope->varlist.begin(); var != scope->varlist.end(); ++var) {
|
||||||
for (var = scope->varlist.begin(); var != scope->varlist.end(); ++var) {
|
|
||||||
if (!var->isStatic() && var->isPointer()) {
|
if (!var->isStatic() && var->isPointer()) {
|
||||||
// allocation but no deallocation of private variables in public function..
|
// allocation but no deallocation of private variables in public function..
|
||||||
const Token *tok = var->typeStartToken();
|
const Token *tok = var->typeStartToken();
|
||||||
|
|
Loading…
Reference in New Issue