Another attempt at the CI.

This commit is contained in:
Mark de Wever 2025-04-05 17:46:32 +02:00
parent f938d3a29b
commit 66c72c5635

View File

@ -23,8 +23,9 @@
// TODO(LLVM-21) Remove dependentScopeDeclRefExpr
// dependentScopeDeclRefExpr requires Clang 20, this uses the same definition as Clang
#if defined(__clang_major__) && __clang_major__ < 20
const clang::ast_matchers::internal::VariadicDynCastAllOfMatcher<clang::Stmt, clang::DependentScopeDeclRefExpr>
clang::ast_matchers::dependentScopeDeclRefExpr;
namespace clang::ast_matchers {
const internal::VariadicDynCastAllOfMatcher<Stmt, DependentScopeDeclRefExpr> dependentScopeDeclRefExpr;
} // namespace clang::ast_matchers
#endif
namespace libcpp {