summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-04-12 22:37:57 +0000
committerChris Lattner <sabre@nondot.org>2009-04-12 22:37:57 +0000
commiteb4373df60fce72ce24c2df291d9607ce8efb9b1 (patch)
tree686df2db4d6242f0842645b6bbfe93fd31c12a3d
parentdeadae28ea38da3b73d0cda76cd9bc6209dca1a8 (diff)
downloadbcm5719-llvm-eb4373df60fce72ce24c2df291d9607ce8efb9b1.tar.gz
bcm5719-llvm-eb4373df60fce72ce24c2df291d9607ce8efb9b1.zip
fix some out of date comments pointed out by Sebastian
llvm-svn: 68923
-rw-r--r--clang/include/clang/Parse/Action.h3
-rw-r--r--clang/lib/Sema/SemaDeclCXX.cpp3
2 files changed, 2 insertions, 4 deletions
diff --git a/clang/include/clang/Parse/Action.h b/clang/include/clang/Parse/Action.h
index df54da46f6c..fdd2b2abacf 100644
--- a/clang/include/clang/Parse/Action.h
+++ b/clang/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/clang/lib/Sema/SemaDeclCXX.cpp b/clang/lib/Sema/SemaDeclCXX.cpp
index 6320798d6d8..6e7256c34d4 100644
--- a/clang/lib/Sema/SemaDeclCXX.cpp
+++ b/clang/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) {
OpenPOWER on IntegriCloud