diff options
author | Anna Zaks <ganna@apple.com> | 2012-10-31 01:18:22 +0000 |
---|---|---|
committer | Anna Zaks <ganna@apple.com> | 2012-10-31 01:18:22 +0000 |
commit | 408f7d0144388e51624c85d8342d93af9f4fd876 (patch) | |
tree | 16360a48db55c60b307c898a5ab6dd5462fb9db9 /clang/lib/AST/DeclObjC.cpp | |
parent | 9953cf294bd667c8214669fac6b4f3febf4658f4 (diff) | |
download | bcm5719-llvm-408f7d0144388e51624c85d8342d93af9f4fd876.tar.gz bcm5719-llvm-408f7d0144388e51624c85d8342d93af9f4fd876.zip |
Address Jordan's review: comments, spaces.
llvm-svn: 167091
Diffstat (limited to 'clang/lib/AST/DeclObjC.cpp')
-rw-r--r-- | clang/lib/AST/DeclObjC.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/clang/lib/AST/DeclObjC.cpp b/clang/lib/AST/DeclObjC.cpp index 5eb9cdc5dca..65a987836ff 100644 --- a/clang/lib/AST/DeclObjC.cpp +++ b/clang/lib/AST/DeclObjC.cpp @@ -190,7 +190,7 @@ ObjCInterfaceDecl::FindPropertyVisibleInPrimaryClass( return 0; } -void ObjCInterfaceDecl::collectPropertiesToImplement(PropertyMap& PM) const { +void ObjCInterfaceDecl::collectPropertiesToImplement(PropertyMap &PM) const { for (ObjCContainerDecl::prop_iterator P = prop_begin(), E = prop_end(); P != E; ++P) { ObjCPropertyDecl *Prop = *P; @@ -200,6 +200,9 @@ void ObjCInterfaceDecl::collectPropertiesToImplement(PropertyMap& PM) const { PI = all_referenced_protocol_begin(), E = all_referenced_protocol_end(); PI != E; ++PI) (*PI)->collectPropertiesToImplement(PM); + // Note, the properties declared only in class extensions are still copied + // into the main @interface's property list, and therefore we don't + // explicitly, have to search class extension properties. } void ObjCInterfaceDecl::mergeClassExtensionProtocolList( @@ -1325,7 +1328,7 @@ void ObjCProtocolDecl::startDefinition() { RD->Data = this->Data; } -void ObjCProtocolDecl::collectPropertiesToImplement(PropertyMap& PM) const { +void ObjCProtocolDecl::collectPropertiesToImplement(PropertyMap &PM) const { for (ObjCProtocolDecl::prop_iterator P = prop_begin(), E = prop_end(); P != E; ++P) { ObjCPropertyDecl *Prop = *P; |