diff options
Diffstat (limited to 'Sema/Sema.cpp')
-rw-r--r-- | Sema/Sema.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Sema/Sema.cpp b/Sema/Sema.cpp index d3930f60fa..6b799e0c74 100644 --- a/Sema/Sema.cpp +++ b/Sema/Sema.cpp @@ -63,8 +63,8 @@ QualType Sema::GetObjcProtoType(SourceLocation Loc) { return Context.getObjcProtoType(); } -Sema::Sema(Preprocessor &pp, ASTContext &ctxt, std::vector<Decl*> &prevInGroup) - : PP(pp), Context(ctxt), CurFunctionDecl(0), TopLevelDeclList(prevInGroup) { +Sema::Sema(Preprocessor &pp, ASTContext &ctxt) + : PP(pp), Context(ctxt), CurFunctionDecl(0) { // Get IdentifierInfo objects for known functions for which we // do extra checking. |