diff options
author | Steve Naroff <snaroff@apple.com> | 2007-10-29 21:39:29 +0000 |
---|---|---|
committer | Steve Naroff <snaroff@apple.com> | 2007-10-29 21:39:29 +0000 |
commit | 91fa0b7759b575045142abd6ee48c076297ad77b (patch) | |
tree | 93c7f685fce02ac76e11fd205cf9bb576e65c745 /Parse/ParseObjc.cpp | |
parent | 60fcceeedbfc8b4a99cb942e2bc5aeb9e2f92a1f (diff) |
Remove a bunch of TODO's that have been done for quite some time...
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@43476 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Parse/ParseObjc.cpp')
-rw-r--r-- | Parse/ParseObjc.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Parse/ParseObjc.cpp b/Parse/ParseObjc.cpp index c628f4d8fc..0d44dcdd3a 100644 --- a/Parse/ParseObjc.cpp +++ b/Parse/ParseObjc.cpp @@ -21,11 +21,11 @@ using namespace clang; /// ParseExternalDeclaration: /// external-declaration: [C99 6.9] /// [OBJC] objc-class-definition -/// [OBJC] objc-class-declaration [TODO] -/// [OBJC] objc-alias-declaration [TODO] -/// [OBJC] objc-protocol-definition [TODO] -/// [OBJC] objc-method-definition [TODO] -/// [OBJC] '@' 'end' [TODO] +/// [OBJC] objc-class-declaration +/// [OBJC] objc-alias-declaration +/// [OBJC] objc-protocol-definition +/// [OBJC] objc-method-definition +/// [OBJC] '@' 'end' Parser::DeclTy *Parser::ParseObjCAtDirectives() { SourceLocation AtLoc = ConsumeToken(); // the "@" |