Skip to content

Commit

Permalink
Fix #11815 (dump: add token attribute isTemplateArg)
Browse files Browse the repository at this point in the history
  • Loading branch information
danmar committed Jul 5, 2023
1 parent 682bdd3 commit 1786ff6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/tokenize.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5840,6 +5840,8 @@ void Tokenizer::dump(std::ostream &out) const
out << " externLang=\"C\"";
if (tok->isExpandedMacro())
out << " isExpandedMacro=\"true\"";
if (tok->isTemplateArg())
out << " isTemplateArg=\"true\"";
if (tok->isRemovedVoidParameter())
out << " isRemovedVoidParameter=\"true\"";
if (tok->isSplittedVarDeclComma())
Expand Down

0 comments on commit 1786ff6

Please sign in to comment.