fit in 80 cols, rename some methods.

llvm-svn: 39097
This commit is contained in:
Chris Lattner 2006-11-03 07:19:18 +00:00
parent 569ce145d8
commit 8fb548fefd
2 changed files with 11 additions and 8 deletions

View File

@ -112,7 +112,8 @@ public:
//===--------------------------------------------------------------------===//
virtual DeclTy *ParsedClassDeclaration(Scope *S,
IdentifierInfo **identList, unsigned nElements) {
IdentifierInfo **IdentList,
unsigned NumElts) {
return 0;
}
@ -291,7 +292,8 @@ public:
virtual void PopScope(SourceLocation Loc, Scope *S);
virtual DeclTy *ParsedClassDeclaration(Scope *S,
IdentifierInfo **identList, unsigned nElements);
IdentifierInfo **IdentList,
unsigned NumElts);
};

View File

@ -234,12 +234,13 @@ private:
// Objective-C External Declarations
void ObjCParseAtDirectives();
void ObjCParseClassDeclaration(SourceLocation atLoc);
void ObjCParseInterfaceDeclaration();
void ObjCParseProtocolDeclaration();
void ObjCParseImplementationDeclaration();
void ObjCParseEndDeclaration();
void ObjCParseAliasDeclaration();
void ObjCParseAtClassDeclaration(SourceLocation atLoc);
void ObjCParseAtInterfaceDeclaration();
void ObjCParseAtProtocolDeclaration();
void ObjCParseAtImplementationDeclaration();
void ObjCParseAtEndDeclaration();
void ObjCParseAtAliasDeclaration();
void ObjCParseInstanceMethodDeclaration();
void ObjCParseClassMethodDeclaration();