Skip to content

Commit

Permalink
Update tokenize.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
chrchr-github authored Mar 11, 2024
1 parent c357105 commit 4022b12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/tokenize.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7091,7 +7091,7 @@ void Tokenizer::simplifyVarDecl(Token * tokBegin, const Token * const tokEnd, co
continue;
if (isCPP11 && type0->str() == "using")
continue;
if (type0->isCPP() && Token::Match(type0, "namespace|delete"))
if (type0->isCpp() && Token::Match(type0, "namespace|delete"))
continue;

bool isconst = false;
Expand Down

0 comments on commit 4022b12

Please sign in to comment.