diff options
Diffstat (limited to 'include/clang/Parse/Action.h')
-rw-r--r-- | include/clang/Parse/Action.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/clang/Parse/Action.h b/include/clang/Parse/Action.h index c644e75b6e..f7a7809c7b 100644 --- a/include/clang/Parse/Action.h +++ b/include/clang/Parse/Action.h @@ -453,6 +453,12 @@ public: IdentifierInfo **ProtoRefNames, unsigned NumProtoRefs) { return 0; } + virtual DeclTy *ObjcStartCatInterface(SourceLocation AtInterfaceLoc, + IdentifierInfo *ClassName, SourceLocation ClassLoc, + IdentifierInfo *CategoryName, SourceLocation CategoryLoc, + IdentifierInfo **ProtoRefNames, unsigned NumProtoRefs) { + return 0; + } virtual DeclTy *ObjcBuildMethodDeclaration(SourceLocation MethodLoc, tok::TokenKind MethodType, TypeTy *ReturnType, ObjcKeywordDecl *Keywords, unsigned NumKeywords, @@ -544,7 +550,6 @@ public: virtual DeclTy *ObjcStartProtoInterface(SourceLocation AtProtoInterfaceLoc, IdentifierInfo *ProtocolName, SourceLocation ProtocolLoc, IdentifierInfo **ProtoRefNames, unsigned NumProtoRefs); - }; } // end namespace clang |