]> granicus.if.org Git - clang/commitdiff
fix some out of date comments pointed out by Sebastian
authorChris Lattner <sabre@nondot.org>
Sun, 12 Apr 2009 22:37:57 +0000 (22:37 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 12 Apr 2009 22:37:57 +0000 (22:37 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@68923 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Parse/Action.h
lib/Sema/SemaDeclCXX.cpp

index df54da46f6c759b75ff948dc4ad2cde8f5530444..fdd2b2abacf1a3c50a209b89240c3ebc945c396e 100644 (file)
@@ -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,
index 6320798d6d85257d01ef6b19d3130e36b97acfde..6e7256c34d439b228f2043a224ea447e96f539da 100644 (file)
@@ -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) {