Tokenizer::setVarId: fixed problem for classes with inheritance

This commit is contained in:
Daniel Marjamäki 2012-04-22 10:38:06 +02:00
parent e39b7f1bfd
commit 871823e9c6
1 changed files with 1 additions and 0 deletions

View File

@ -3062,6 +3062,7 @@ void Tokenizer::setVarIdNew()
} while (tok && (tok->isName() || tok->str() == ","));
if (!tok)
break;
tok = tok->previous();
}
}