The MatchingMatcher struct currently contains only a string, but it will
be expanded in the future.
Details
Details
- Reviewers
aaron.ballman
Diff Detail
Diff Detail
- Repository
- rC Clang
- Build Status
Buildable 24913 Build 24912: arc lint + arc unit
Event Timeline
lib/ASTMatchers/Dynamic/Registry.cpp | ||
---|---|---|
604–605 | std::vector<ArgKind> AcceptedTypes{StaticType}; instead? | |
608–611 | Elide the identifiers for arguments that are not named in the lambda. | |
unittests/ASTMatchers/Dynamic/RegistryTest.cpp | ||
563 | Move the const to the other side of the declaration. | |
564 | std::find_if(C.begin(), C.end(), ...) -> llvm::find_if(C, ...) |
Comment Actions
LGTM aside from a minor commenting nit.
include/clang/ASTMatchers/Dynamic/Registry.h | ||
---|---|---|
106 | I think we typically go with \p instead of @p in our doc comments. |
I think we typically go with \p instead of @p in our doc comments.