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 f938d3a commit 66c72c5Copy full SHA for 66c72c5
libcxx/test/tools/clang_tidy_checks/robust_against_operator_ampersand.cpp
@@ -23,8 +23,9 @@
23
// TODO(LLVM-21) Remove dependentScopeDeclRefExpr
24
// dependentScopeDeclRefExpr requires Clang 20, this uses the same definition as Clang
25
#if defined(__clang_major__) && __clang_major__ < 20
26
-const clang::ast_matchers::internal::VariadicDynCastAllOfMatcher<clang::Stmt, clang::DependentScopeDeclRefExpr>
27
- clang::ast_matchers::dependentScopeDeclRefExpr;
+namespace clang::ast_matchers {
+const internal::VariadicDynCastAllOfMatcher<Stmt, DependentScopeDeclRefExpr> dependentScopeDeclRefExpr;
28
+} // namespace clang::ast_matchers
29
#endif
30
31
namespace libcpp {
0 commit comments