From: Chris Lattner Date: Sun, 12 Apr 2009 22:37:57 +0000 (+0000) Subject: fix some out of date comments pointed out by Sebastian X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b6688e02d2cea9a1e2519654133ac2aa81fd8055;p=clang fix some out of date comments pointed out by Sebastian git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@68923 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Parse/Action.h b/include/clang/Parse/Action.h index df54da46f6..fdd2b2abac 100644 --- a/include/clang/Parse/Action.h +++ b/include/clang/Parse/Action.h @@ -1046,8 +1046,7 @@ public: /// ActOnCXXMemberDeclarator - This is invoked when a C++ class member /// declarator is parsed. 'AS' is the access specifier, 'BitfieldWidth' /// specifies the bitfield width if there is one and 'Init' specifies the - /// initializer if any. 'LastInGroup' is non-null for cases where one declspec - /// has multiple declarators on it. 'Deleted' is true if there's a =delete + /// initializer if any. 'Deleted' is true if there's a =delete /// specifier on the function. virtual DeclPtrTy ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS, Declarator &D, diff --git a/lib/Sema/SemaDeclCXX.cpp b/lib/Sema/SemaDeclCXX.cpp index 6320798d6d..6e7256c34d 100644 --- a/lib/Sema/SemaDeclCXX.cpp +++ b/lib/Sema/SemaDeclCXX.cpp @@ -469,8 +469,7 @@ void Sema::ActOnBaseSpecifiers(DeclPtrTy ClassDecl, BaseTy **Bases, /// ActOnCXXMemberDeclarator - This is invoked when a C++ class member /// declarator is parsed. 'AS' is the access specifier, 'BW' specifies the /// bitfield width if there is one and 'InitExpr' specifies the initializer if -/// any. 'LastInGroup' is non-null for cases where one declspec has multiple -/// declarators on it. +/// any. Sema::DeclPtrTy Sema::ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS, Declarator &D, ExprTy *BW, ExprTy *InitExpr, bool Deleted) {