Skip to content

Commit

Permalink
Fix #11815 (dump: add token attribute isTemplateArg) (#5220)
Browse files Browse the repository at this point in the history
  • Loading branch information
danmar committed Jul 5, 2023
1 parent dde4545 commit 2ff9e60
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 2ff9e60

Please sign in to comment.