Skip to content

Commit

Permalink
tokenize.cpp: fixed knownConditionTrueFalse selfcheck warning
Browse files Browse the repository at this point in the history
  • Loading branch information
firewave committed Mar 19, 2024
1 parent 1a150d0 commit 79e62e6
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 @@ -4251,7 +4251,7 @@ static bool setVarIdParseDeclaration(Token** tok, const VariableMap& variableMap
bracket = true;
} else if (tok2->str() == "::") {
singleNameCount = 0;
} else if (tok2->str() != "*" && tok2->str() != "::" && tok2->str() != "...") {
} else if (tok2->str() != "*" && tok2->str() != "...") {
break;
}
tok2 = tok2->next();
Expand Down

0 comments on commit 79e62e6

Please sign in to comment.