Skip to content

Commit 66c72c5

Browse files
committed
Another attempt at the CI.
1 parent f938d3a commit 66c72c5

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

libcxx/test/tools/clang_tidy_checks/robust_against_operator_ampersand.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,9 @@
2323
// TODO(LLVM-21) Remove dependentScopeDeclRefExpr
2424
// dependentScopeDeclRefExpr requires Clang 20, this uses the same definition as Clang
2525
#if defined(__clang_major__) && __clang_major__ < 20
26-
const clang::ast_matchers::internal::VariadicDynCastAllOfMatcher<clang::Stmt, clang::DependentScopeDeclRefExpr>
27-
clang::ast_matchers::dependentScopeDeclRefExpr;
26+
namespace clang::ast_matchers {
27+
const internal::VariadicDynCastAllOfMatcher<Stmt, DependentScopeDeclRefExpr> dependentScopeDeclRefExpr;
28+
} // namespace clang::ast_matchers
2829
#endif
2930

3031
namespace libcpp {

0 commit comments

Comments
 (0)