code style
This commit is contained in:
parent
1622922384
commit
820df7fdbd
|
@ -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..
|
||||
|
|
Loading…
Reference in New Issue