diff options
Diffstat (limited to 'clang/AST/ASTContext.cpp')
-rw-r--r-- | clang/AST/ASTContext.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/AST/ASTContext.cpp b/clang/AST/ASTContext.cpp index 3d312fa4a80..ad54010c500 100644 --- a/clang/AST/ASTContext.cpp +++ b/clang/AST/ASTContext.cpp @@ -1047,9 +1047,9 @@ QualType ASTContext::maxIntegerType(QualType lhs, QualType rhs) { // getCFConstantStringType - Return the type used for constant CFStrings. QualType ASTContext::getCFConstantStringType() { if (!CFConstantStringTypeDecl) { - CFConstantStringTypeDecl = new RecordDecl(Decl::Struct, SourceLocation(), - &Idents.get("NSConstantString"), - 0); + CFConstantStringTypeDecl = + RecordDecl::Create(Decl::Struct, SourceLocation(), + &Idents.get("NSConstantString"), 0, *this); QualType FieldTypes[4]; // const int *isa; |