[PATCH] D157681: [clang][AST] TextNodeDumper learned to dump qualifiers (NestedNameSpecifier)
Aaron Ballman via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Aug 15 05:29:59 PDT 2023
aaron.ballman accepted this revision.
aaron.ballman added a comment.
This revision is now accepted and ready to land.
LGTM aside from a small nit (feel free to fix when landing).
================
Comment at: clang/include/clang/AST/TextNodeDumper.h:205
void dumpCleanupObject(const ExprWithCleanups::CleanupObject &C);
+ void dumpNestedNameSpecifier(NestedNameSpecifier *NNS);
----------------
================
Comment at: clang/lib/AST/TextNodeDumper.cpp:737
+void clang::TextNodeDumper::dumpNestedNameSpecifier(NestedNameSpecifier *NNS) {
+ if (!NNS)
----------------
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D157681/new/
https://reviews.llvm.org/D157681
More information about the cfe-commits
mailing list