@@ -580,8 +580,9 @@ void ASTContext::operator delete(void *Data) throw() {
580580}
581581
582582ASTContext *ASTContext::get (
583- LangOptions &langOpts, TypeCheckerOptions &typeckOpts, SILOptions &silOpts,
584- SearchPathOptions &SearchPathOpts, ClangImporterOptions &ClangImporterOpts,
583+ LangOptions &langOpts, TypeCheckerOptions &typecheckOpts,
584+ SILOptions &silOpts, SearchPathOptions &SearchPathOpts,
585+ ClangImporterOptions &ClangImporterOpts,
585586 symbolgraphgen::SymbolGraphOptions &SymbolGraphOpts,
586587 SourceManager &SourceMgr, DiagnosticEngine &Diags,
587588 std::function<bool (llvm::StringRef, bool )> PreModuleImportCallback) {
@@ -595,14 +596,15 @@ ASTContext *ASTContext::get(
595596 impl = reinterpret_cast <void *>(
596597 llvm::alignAddr (impl, llvm::Align (alignof (Implementation))));
597598 new (impl) Implementation ();
598- return new (mem) ASTContext (langOpts, typeckOpts , silOpts, SearchPathOpts,
599+ return new (mem) ASTContext (langOpts, typecheckOpts , silOpts, SearchPathOpts,
599600 ClangImporterOpts, SymbolGraphOpts, SourceMgr,
600601 Diags, PreModuleImportCallback);
601602}
602603
603604ASTContext::ASTContext (
604- LangOptions &langOpts, TypeCheckerOptions &typeckOpts, SILOptions &silOpts,
605- SearchPathOptions &SearchPathOpts, ClangImporterOptions &ClangImporterOpts,
605+ LangOptions &langOpts, TypeCheckerOptions &typecheckOpts,
606+ SILOptions &silOpts, SearchPathOptions &SearchPathOpts,
607+ ClangImporterOptions &ClangImporterOpts,
606608 symbolgraphgen::SymbolGraphOptions &SymbolGraphOpts,
607609 SourceManager &SourceMgr, DiagnosticEngine &Diags,
608610 std::function<bool (llvm::StringRef, bool )> PreModuleImportCallback)
0 commit comments