Skip to content

Commit 2f93fca

Browse files
committed
Tokenizer: reduced isCPP() calls in simplifyTypedefCpp()
1 parent 4809f26 commit 2f93fca

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

lib/tokenize.cpp

+4-3
Original file line numberDiff line numberDiff line change
@@ -1147,6 +1147,7 @@ void Tokenizer::simplifyTypedef()
11471147

11481148
void Tokenizer::simplifyTypedefCpp()
11491149
{
1150+
const bool cpp = isCPP();
11501151
bool isNamespace = false;
11511152
std::string className, fullClassName;
11521153
bool hasClass = false;
@@ -1714,7 +1715,7 @@ void Tokenizer::simplifyTypedefCpp()
17141715
}
17151716

17161717
// check for member functions
1717-
else if (tok2->isCpp() && tok2->str() == "(" && isFunctionHead(tok2, "{:")) {
1718+
else if (cpp && tok2->str() == "(" && isFunctionHead(tok2, "{:")) {
17181719
const Token *func = tok2->previous();
17191720

17201721
/** @todo add support for multi-token operators */
@@ -1741,7 +1742,7 @@ void Tokenizer::simplifyTypedefCpp()
17411742
// check for entering a new scope
17421743
else if (tok2->str() == "{") {
17431744
// check for entering a new namespace
1744-
if (tok2->isCpp()) {
1745+
if (cpp) {
17451746
if (tok2->strAt(-2) == "namespace") {
17461747
if (classLevel < spaceInfo.size() &&
17471748
spaceInfo[classLevel].isNamespace &&
@@ -1770,7 +1771,7 @@ void Tokenizer::simplifyTypedefCpp()
17701771

17711772
// check for operator typedef
17721773
/** @todo add support for multi-token operators */
1773-
else if (tok2->isCpp() &&
1774+
else if (cpp &&
17741775
tok2->str() == "operator" &&
17751776
tok2->next() &&
17761777
tok2->next()->str() == typeName->str() &&

0 commit comments

Comments
 (0)