We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1f86c3 commit bb0b261Copy full SHA for bb0b261
clang-tools-extra/clang-tidy/modernize/UseStdNumbersCheck.cpp
@@ -62,7 +62,7 @@ AST_MATCHER(clang::QualType, isFloating) {
62
}
63
64
AST_MATCHER_P(clang::Expr, anyOfExhaustive,
65
- llvm::ArrayRef<Matcher<clang::Stmt>>, Exprs) {
+ llvm::ArrayRef<const Matcher<clang::Stmt>>, Exprs) {
66
bool FoundMatch = false;
67
for (const auto &InnerMatcher : Exprs) {
68
clang::ast_matchers::internal::BoundNodesTreeBuilder Result = *Builder;
0 commit comments