Refactoring : Removed a short commented code that I never use anyway
This commit is contained in:
parent
2b3a987552
commit
2e23b09a05
|
@ -254,11 +254,6 @@ const char * CheckMemoryLeakClass::call_func( const TOKEN *tok, std::list<const
|
||||||
const TOKEN *func_ = func;
|
const TOKEN *func_ = func;
|
||||||
while ( func_ && func_->str() == ";" )
|
while ( func_ && func_->str() == ";" )
|
||||||
func_ = func_->next();
|
func_ = func_->next();
|
||||||
/*
|
|
||||||
for (const TOKEN *t = func; t; t = t->next())
|
|
||||||
{
|
|
||||||
std::cout << t->str() << "\n";
|
|
||||||
}*/
|
|
||||||
|
|
||||||
const char *ret = 0;
|
const char *ret = 0;
|
||||||
// TODO : "goto" isn't handled well
|
// TODO : "goto" isn't handled well
|
||||||
|
|
Loading…
Reference in New Issue