Renamed _unnamedCount to mUnnamedCount

This commit is contained in:
Daniel Marjamäki 2018-06-16 22:09:18 +02:00
parent ef534c2d0d
commit 63e6d35cb6
2 changed files with 5 additions and 5 deletions

View File

@ -144,7 +144,7 @@ Tokenizer::Tokenizer() :
mErrorLogger(nullptr), mErrorLogger(nullptr),
mSymbolDatabase(nullptr), mSymbolDatabase(nullptr),
mVarId(0), mVarId(0),
_unnamedCount(0), mUnnamedCount(0),
mCodeWithTemplates(false), //is there any templates? mCodeWithTemplates(false), //is there any templates?
_timerResults(nullptr) _timerResults(nullptr)
#ifdef MAXTIME #ifdef MAXTIME
@ -159,7 +159,7 @@ Tokenizer::Tokenizer(const Settings *settings, ErrorLogger *errorLogger) :
mErrorLogger(errorLogger), mErrorLogger(errorLogger),
mSymbolDatabase(nullptr), mSymbolDatabase(nullptr),
mVarId(0), mVarId(0),
_unnamedCount(0), mUnnamedCount(0),
mCodeWithTemplates(false), //is there any templates? mCodeWithTemplates(false), //is there any templates?
_timerResults(nullptr) _timerResults(nullptr)
#ifdef MAXTIME #ifdef MAXTIME
@ -584,7 +584,7 @@ void Tokenizer::simplifyTypedef()
// pull struct, union, enum or class definition out of typedef // pull struct, union, enum or class definition out of typedef
// use typedef name for unnamed struct, union, enum or class // use typedef name for unnamed struct, union, enum or class
if (Token::Match(tok->next(), "const| struct|enum|union|class %type%| {")) { if (Token::Match(tok->next(), "const| struct|enum|union|class %type%| {")) {
Token *tok1 = splitDefinitionFromTypedef(tok, &_unnamedCount); Token *tok1 = splitDefinitionFromTypedef(tok, &mUnnamedCount);
if (!tok1) if (!tok1)
continue; continue;
tok = tok1; tok = tok1;
@ -593,7 +593,7 @@ void Tokenizer::simplifyTypedef()
while (tok1 && tok1->str() != ";" && tok1->str() != "{") while (tok1 && tok1->str() != ";" && tok1->str() != "{")
tok1 = tok1->next(); tok1 = tok1->next();
if (tok1 && tok1->str() == "{") { if (tok1 && tok1->str() == "{") {
tok1 = splitDefinitionFromTypedef(tok, &_unnamedCount); tok1 = splitDefinitionFromTypedef(tok, &mUnnamedCount);
if (!tok1) if (!tok1)
continue; continue;
tok = tok1; tok = tok1;

View File

@ -885,7 +885,7 @@ private:
unsigned int mVarId; unsigned int mVarId;
/** unnamed count "Unnamed0", "Unnamed1", "Unnamed2", ... */ /** unnamed count "Unnamed0", "Unnamed1", "Unnamed2", ... */
unsigned int _unnamedCount; unsigned int mUnnamedCount;
/** /**
* was there any templates? templates that are "unused" are * was there any templates? templates that are "unused" are