Skip to content

Commit bb0b261

Browse files
committed
[clang-tidy][NFC] Attemp to fix compliation issue in UseStdNumbersCheck.cpp
Attempt to fix issue introduced in #66583
1 parent d1f86c3 commit bb0b261

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang-tools-extra/clang-tidy/modernize/UseStdNumbersCheck.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ AST_MATCHER(clang::QualType, isFloating) {
6262
}
6363

6464
AST_MATCHER_P(clang::Expr, anyOfExhaustive,
65-
llvm::ArrayRef<Matcher<clang::Stmt>>, Exprs) {
65+
llvm::ArrayRef<const Matcher<clang::Stmt>>, Exprs) {
6666
bool FoundMatch = false;
6767
for (const auto &InnerMatcher : Exprs) {
6868
clang::ast_matchers::internal::BoundNodesTreeBuilder Result = *Builder;

0 commit comments

Comments
 (0)