[PATCH] D157705: [clang][AST] TextNodeDumper learned to output template specialization kind
Aaron Ballman via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Aug 15 05:31:08 PDT 2023
aaron.ballman accepted this revision.
aaron.ballman added a comment.
This revision is now accepted and ready to land.
LGTM with a small nit (feel free to fix when landing).
================
Comment at: clang/lib/AST/TextNodeDumper.cpp:2053
VisitRecordDecl(D);
+ if (auto *CTSD = dyn_cast<ClassTemplateSpecializationDecl>(D))
+ dumpTemplateSpecializationKind(CTSD->getSpecializationKind());
----------------
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D157705/new/
https://reviews.llvm.org/D157705
More information about the cfe-commits
mailing list