move the ASTContext argument to be first in the argument list of
all Create methods.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@48398 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/AST/ASTContext.cpp b/AST/ASTContext.cpp
index ad54010..db4d53a 100644
--- a/AST/ASTContext.cpp
+++ b/AST/ASTContext.cpp
@@ -1048,8 +1048,8 @@
QualType ASTContext::getCFConstantStringType() {
if (!CFConstantStringTypeDecl) {
CFConstantStringTypeDecl =
- RecordDecl::Create(Decl::Struct, SourceLocation(),
- &Idents.get("NSConstantString"), 0, *this);
+ RecordDecl::Create(*this, Decl::Struct, SourceLocation(),
+ &Idents.get("NSConstantString"), 0);
QualType FieldTypes[4];
// const int *isa;