This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG03101e141bf7: [include-cleaner] Attribute references to
explicit specializations (authored by kadircet).
Repository:
rG LLVM Github Monorepo
CHAN
kadircet updated this revision to Diff 508025.
kadircet marked an inline comment as done.
kadircet added a comment.
- use isa_and_present
- indentation for tests
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D146732/new/
https://reviews.llvm.org/D14
kadircet marked 3 inline comments as done.
kadircet added inline comments.
Comment at: clang-tools-extra/include-cleaner/lib/WalkAST.cpp:82
+if (llvm::isa(ND) || !RD)
+ return ND;
+return RD;
hokein wrote:
> We seem to miss a testcase for `TypeAliasT
hokein accepted this revision.
hokein added inline comments.
This revision is now accepted and ready to land.
Comment at: clang-tools-extra/include-cleaner/lib/WalkAST.cpp:81
+// specializaiton using the exported name, but that's rare.
+if (llvm::isa(ND) || !RD)
+ re
kadircet created this revision.
kadircet added a reviewer: hokein.
Herald added a project: All.
kadircet requested review of this revision.
Herald added a project: clang-tools-extra.
Herald added a subscriber: cfe-commits.
Fixes https://github.com/llvm/llvm-project/issues/61652
Repository:
rG