astyle formatting

This commit is contained in:
Daniel Marjamäki 2010-05-18 20:08:27 +02:00
parent f87eb774eb
commit 1792395654
1 changed files with 1 additions and 1 deletions

View File

@ -2112,7 +2112,7 @@ void CheckMemoryLeakInFunction::checkScope(const Token *Tok1, const std::string
// Check for memory leaks due to improper realloc() usage.
// Below, "a" may be set to null without being freed if realloc() cannot
// allocate the requested memory:
// a = malloc(10); a = realloc(a, 100);
// a = malloc(10); a = realloc(a, 100);
//---------------------------------------------------------------------------
void CheckMemoryLeakInFunction::checkReallocUsage()
{