[clang] [PATCH 1/4] [clang] Improve nested name specifier AST representation (PR #147835)
via cfe-commits
cfe-commits at lists.llvm.org
Fri Jul 11 09:32:49 PDT 2025
================
@@ -2068,7 +2080,9 @@ class ASTContext : public RefCountedBase<ASTContext> {
/// if it hasn't yet been built.
QualType getRawCFConstantStringType() const {
if (CFConstantStringTypeDecl)
- return getTypedefType(CFConstantStringTypeDecl);
+ return getTypedefType(ElaboratedTypeKeyword::None,
+ /*Qualifier=*/std::nullopt,
+ CFConstantStringTypeDecl);
----------------
Sirraide wrote:
Makes sense
https://github.com/llvm/llvm-project/pull/147835
More information about the cfe-commits
mailing list