code style

This commit is contained in:
Daniel Marjamäki 2009-01-21 07:23:15 +00:00
parent 1622922384
commit 820df7fdbd
1 changed files with 2 additions and 2 deletions

View File

@ -480,8 +480,8 @@ void Tokenizer::setVarId()
unsigned int _varId = 0;
for (Token *tok = _tokens; tok; tok = tok->next())
{
if ( !(firstMatch = Token::Match(tok, "[;{}(] %type% *| %var%"))
&& !Token::Match(tok, "[;{}(] %type% %type% *| %var%") )
if (!(firstMatch = Token::Match(tok, "[;{}(] %type% *| %var%"))
&& !Token::Match(tok, "[;{}(] %type% %type% *| %var%"))
continue;
// Determine name of declared variable..