[cfe-commits] r39097 - in /cfe/cfe/trunk/include/clang/Parse: Action.h Parser.h
sabre at cs.uiuc.edu
sabre at cs.uiuc.edu
Wed Jul 11 09:27:30 PDT 2007
Author: sabre
Date: Wed Jul 11 11:27:30 2007
New Revision: 39097
URL: http://llvm.org/viewvc/llvm-project?rev=39097&view=rev
Log:
fit in 80 cols, rename some methods.
Modified:
cfe/cfe/trunk/include/clang/Parse/Action.h
cfe/cfe/trunk/include/clang/Parse/Parser.h
Modified: cfe/cfe/trunk/include/clang/Parse/Action.h
URL: http://llvm.org/viewvc/llvm-project/cfe/cfe/trunk/include/clang/Parse/Action.h?rev=39097&r1=39096&r2=39097&view=diff
==============================================================================
--- cfe/cfe/trunk/include/clang/Parse/Action.h (original)
+++ cfe/cfe/trunk/include/clang/Parse/Action.h Wed Jul 11 11:27:30 2007
@@ -112,7 +112,8 @@
//===--------------------------------------------------------------------===//
virtual DeclTy *ParsedClassDeclaration(Scope *S,
- IdentifierInfo **identList, unsigned nElements) {
+ IdentifierInfo **IdentList,
+ unsigned NumElts) {
return 0;
}
@@ -291,7 +292,8 @@
virtual void PopScope(SourceLocation Loc, Scope *S);
virtual DeclTy *ParsedClassDeclaration(Scope *S,
- IdentifierInfo **identList, unsigned nElements);
+ IdentifierInfo **IdentList,
+ unsigned NumElts);
};
Modified: cfe/cfe/trunk/include/clang/Parse/Parser.h
URL: http://llvm.org/viewvc/llvm-project/cfe/cfe/trunk/include/clang/Parse/Parser.h?rev=39097&r1=39096&r2=39097&view=diff
==============================================================================
--- cfe/cfe/trunk/include/clang/Parse/Parser.h (original)
+++ cfe/cfe/trunk/include/clang/Parse/Parser.h Wed Jul 11 11:27:30 2007
@@ -234,12 +234,13 @@
// 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();
More information about the cfe-commits
mailing list