code cleanup

This commit is contained in:
Daniel Marjamäki 2009-12-20 09:02:25 +01:00
parent 813c674611
commit 74b9bccd07
1 changed files with 1 additions and 1 deletions

View File

@ -412,7 +412,7 @@ void CheckClass::constructors()
Var *varlist = getVarList(tok1, false);
// If there is a private variable, there should be a constructor..
for (const struct Var *var = varlist; var; var = var->next)
for (const Var *var = varlist; var; var = var->next)
{
if (var->priv)
{