Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
clang-tools-extra/include-cleaner/lib/WalkAST.cpp | ||
---|---|---|
81 | I think we should be careful about the case where ND == nullptr, isa will trigger an assertion, use isa_and_present. | |
82 | We seem to miss a testcase for TypeAliasTemplateDecl, add one? | |
clang-tools-extra/include-cleaner/unittests/WalkASTTest.cpp | ||
119 | nit: The indentation looks weird, the template... should not align with the above testWalk text, would be better to add 4 space indentation. |
I think we should be careful about the case where ND == nullptr, isa will trigger an assertion, use isa_and_present.