diff options
author | Chris Lattner <sabre@nondot.org> | 2009-02-16 19:24:31 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-02-16 19:24:31 +0000 |
commit | aab70d296313b3c3a13759bfccc325c334f132e3 (patch) | |
tree | 17bd6e8e0ef7fe92f22c50568a953a78570d3021 /clang/lib/AST/DeclObjC.cpp | |
parent | ab0c5ecc5414396c675f584763596d1486506d34 (diff) | |
download | bcm5719-llvm-aab70d296313b3c3a13759bfccc325c334f132e3.tar.gz bcm5719-llvm-aab70d296313b3c3a13759bfccc325c334f132e3.zip |
wrap long lines.
llvm-svn: 64650
Diffstat (limited to 'clang/lib/AST/DeclObjC.cpp')
-rw-r--r-- | clang/lib/AST/DeclObjC.cpp | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/clang/lib/AST/DeclObjC.cpp b/clang/lib/AST/DeclObjC.cpp index b36da643ecf..ce745bc6b87 100644 --- a/clang/lib/AST/DeclObjC.cpp +++ b/clang/lib/AST/DeclObjC.cpp @@ -514,11 +514,12 @@ ObjCPropertyImplDecl *ObjCImplementationDecl::FindPropertyImplIvarDecl(Identifie } /// 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 @@ ObjCPropertyImplDecl *ObjCCategoryImplDecl::FindPropertyImplIvarDecl(IdentifierI /// 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; |