Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
- Build Status
Buildable 41667 Build 41937: arc lint + arc unit
Event Timeline
clang-tools-extra/clangd/SemanticHighlighting.cpp | ||
---|---|---|
258 | Instead of calling visitDependentTypesInQualifier, implement TraverseNestedNameSpecifierLoc to catch all their occurrences. No need to redo the traversal, it should be handled by RecursiveASTVisitor. | |
262 | NIT: remove the comment, it is redundant. One can always navigate to the definition of DependentTemplateSpecializationTypeLoc if they need to understand what it is. |
Comment Actions
Thanks! LGTM
clang-tools-extra/clangd/SemanticHighlighting.cpp | ||
---|---|---|
275 | NIT: remove braces from the inner if. They look totally ok in the outer if, though |
Instead of calling visitDependentTypesInQualifier, implement TraverseNestedNameSpecifierLoc to catch all their occurrences.
No need to redo the traversal, it should be handled by RecursiveASTVisitor.