From b935e1d210fd68242d29905027db2e9c7244728d Mon Sep 17 00:00:00 2001 From: Doug Gregor Date: Fri, 18 Apr 2025 10:18:34 -0700 Subject: [PATCH] Qualify "Decl" type in a member named "Decl" --- clang/include/clang/AST/ASTContext.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/include/clang/AST/ASTContext.h b/clang/include/clang/AST/ASTContext.h index 1e65b6a24c63c..b7544031f2d40 100644 --- a/clang/include/clang/AST/ASTContext.h +++ b/clang/include/clang/AST/ASTContext.h @@ -804,7 +804,7 @@ class ASTContext : public RefCountedBase { struct AvailabilityDomainInfo { FeatureAvailKind Kind = FeatureAvailKind::None; - Decl *Decl = nullptr; + clang::Decl *Decl = nullptr; ImplicitCastExpr *Call = nullptr; bool isInvalid() const { return Kind == FeatureAvailKind::None; } };