forked from OSchip/llvm-project
parent
96aee15d33
commit
ed977473fe
|
@ -253,7 +253,6 @@ void Parser::ParseObjCInterfaceDeclList(DeclTy *interfaceDecl) {
|
|||
ParseDeclarationOrFunctionDefinition();
|
||||
}
|
||||
}
|
||||
|
||||
/// Insert collected methods declarations into the @interface object.
|
||||
Actions.ObjcAddMethodsToClass(interfaceDecl,&allMethods[0],allMethods.size());
|
||||
return;
|
||||
|
@ -477,8 +476,8 @@ Parser::TypeTy *Parser::ParseObjCTypeName() {
|
|||
/// objc-keyword-attributes: [OBJC2]
|
||||
/// __attribute__((unused))
|
||||
///
|
||||
Parser::DeclTy *Parser::ParseObjCMethodDecl(tok::TokenKind mType, SourceLocation mLoc) {
|
||||
|
||||
Parser::DeclTy *Parser::ParseObjCMethodDecl(tok::TokenKind mType,
|
||||
SourceLocation mLoc) {
|
||||
TypeTy *ReturnType = 0;
|
||||
AttributeList *methodAttrs = 0;
|
||||
|
||||
|
|
Loading…
Reference in New Issue