[cfe-commits] r64650 - /cfe/trunk/lib/AST/DeclObjC.cpp
Chris Lattner
sabre at nondot.org
Mon Feb 16 11:24:32 PST 2009
Author: lattner
Date: Mon Feb 16 13:24:31 2009
New Revision: 64650
URL: http://llvm.org/viewvc/llvm-project?rev=64650&view=rev
Log:
wrap long lines.
Modified:
cfe/trunk/lib/AST/DeclObjC.cpp
Modified: cfe/trunk/lib/AST/DeclObjC.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/AST/DeclObjC.cpp?rev=64650&r1=64649&r2=64650&view=diff
==============================================================================
--- cfe/trunk/lib/AST/DeclObjC.cpp (original)
+++ cfe/trunk/lib/AST/DeclObjC.cpp Mon Feb 16 13:24:31 2009
@@ -514,11 +514,12 @@
}
/// FindPropertyImplIvarDecl - This method lookup the ivar in the list of
-/// properties implemented in this category @implementation block and returns the
-/// implemented property that uses it.
+/// properties implemented in this category @implementation block and returns
+/// the implemented property that uses it.
///
-ObjCPropertyImplDecl *ObjCCategoryImplDecl::FindPropertyImplIvarDecl(IdentifierInfo *ivarId) const {
- for (propimpl_iterator i = propimpl_begin(), e = propimpl_end(); i != e; ++i) {
+ObjCPropertyImplDecl *ObjCCategoryImplDecl::
+FindPropertyImplIvarDecl(IdentifierInfo *ivarId) const {
+ for (propimpl_iterator i = propimpl_begin(), e = propimpl_end(); i != e; ++i){
ObjCPropertyImplDecl *PID = *i;
if (PID->getPropertyIvarDecl() &&
PID->getPropertyIvarDecl()->getIdentifier() == ivarId)
@@ -531,8 +532,9 @@
/// added to the list of those properties @synthesized/@dynamic in this
/// category @implementation block.
///
-ObjCPropertyImplDecl *ObjCCategoryImplDecl::FindPropertyImplDecl(IdentifierInfo *Id) const {
- for (propimpl_iterator i = propimpl_begin(), e = propimpl_end(); i != e; ++i) {
+ObjCPropertyImplDecl *ObjCCategoryImplDecl::
+FindPropertyImplDecl(IdentifierInfo *Id) const {
+ for (propimpl_iterator i = propimpl_begin(), e = propimpl_end(); i != e; ++i){
ObjCPropertyImplDecl *PID = *i;
if (PID->getPropertyDecl()->getIdentifier() == Id)
return PID;
More information about the cfe-commits
mailing list