Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
- Build Status
Buildable 42766 Build 43333: arc lint + arc unit
Event Timeline
Comment Actions
LGTM aside from some nits.
clang/include/clang/AST/ASTNodeTraverser.h | ||
---|---|---|
134 | This seems like it may be over the 80 col limit? | |
662 | const CXXMethodDecl *, or just sink it into the range-based for loop since we don't really need the local anyway. | |
663 | const auto * | |
clang/lib/ASTMatchers/ASTMatchFinder.cpp | ||
219 | You can elide the braces, also you can remove the else after a return. | |
223–224 | if (const TemplateParameterList *TPL = Node->getTemplateParameterList()) { ... } | |
226 | Elide braces | |
232 | const CXXMethodDecl * | |
234 | Elide braces |
This seems like it may be over the 80 col limit?