diff options
Diffstat (limited to 'clang/lib/AST/Decl.cpp')
-rw-r--r-- | clang/lib/AST/Decl.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/clang/lib/AST/Decl.cpp b/clang/lib/AST/Decl.cpp index fe2e95d1579..382b9ebd512 100644 --- a/clang/lib/AST/Decl.cpp +++ b/clang/lib/AST/Decl.cpp @@ -76,10 +76,9 @@ FunctionDecl *FunctionDecl::Create(ASTContext &C, DeclContext *DC, TypeSpecStartLoc); } -BlockDecl *BlockDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L, - ParmVarDecl **args, unsigned numargs) { +BlockDecl *BlockDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L) { void *Mem = C.getAllocator().Allocate<BlockDecl>(); - return new (Mem) BlockDecl(DC, L, args, numargs); + return new (Mem) BlockDecl(DC, L); } FieldDecl *FieldDecl::Create(ASTContext &C, SourceLocation L, |