removed deprecated flag 'firstMatch'
This commit is contained in:
parent
015143b56c
commit
fdaa1af694
|
@ -509,7 +509,6 @@ void Tokenizer::setVarId()
|
||||||
tok->varId(0);
|
tok->varId(0);
|
||||||
|
|
||||||
// Set variable ids..
|
// Set variable ids..
|
||||||
bool firstMatch;
|
|
||||||
unsigned int _varId = 0;
|
unsigned int _varId = 0;
|
||||||
for (Token *tok = _tokens; tok; tok = tok->next())
|
for (Token *tok = _tokens; tok; tok = tok->next())
|
||||||
{
|
{
|
||||||
|
@ -524,7 +523,7 @@ void Tokenizer::setVarId()
|
||||||
|
|
||||||
// Determine name of declared variable..
|
// Determine name of declared variable..
|
||||||
const char *varname = 0;
|
const char *varname = 0;
|
||||||
Token *tok2 = tok->tokAt(firstMatch ? 1 : 2);
|
Token *tok2 = tok->tokAt(1);
|
||||||
while (tok2 && ! Token::Match(tok2, "[;[=(]"))
|
while (tok2 && ! Token::Match(tok2, "[;[=(]"))
|
||||||
{
|
{
|
||||||
if (tok2->isName())
|
if (tok2->isName())
|
||||||
|
|
Loading…
Reference in New Issue