Modified comments

This commit is contained in:
Daniel Marjamäki 2007-06-08 16:46:51 +00:00
parent abc1f6816d
commit 746c99be28
2 changed files with 7 additions and 1 deletions

View File

@ -22,6 +22,12 @@ struct _variable
//---------------------------------------------------------------------------
//---------------------------------------------------------------------------
// Checks for memory leaks..
//---------------------------------------------------------------------------
void CheckMemoryLeak()
{
std::vector<_variable *> varlist;

View File

@ -158,7 +158,7 @@ void WarningRedundantCode()
//---------------------------------------------------------------------------
// if (condition);
// if (condition) ....
//---------------------------------------------------------------------------
void WarningIf()