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/Sema | |
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/Sema')
-rw-r--r-- | clang/lib/Sema/SemaObjCProperty.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/lib/Sema/SemaObjCProperty.cpp b/clang/lib/Sema/SemaObjCProperty.cpp index de608a129f2..8d708607f6e 100644 --- a/clang/lib/Sema/SemaObjCProperty.cpp +++ b/clang/lib/Sema/SemaObjCProperty.cpp @@ -1440,8 +1440,8 @@ bool Sema::isPropertyReadonly(ObjCPropertyDecl *PDecl, /// CollectImmediateProperties - This routine collects all properties in /// the class and its conforming protocols; but not those it its super class. void Sema::CollectImmediateProperties(ObjCContainerDecl *CDecl, - ObjCContainerDecl::PropertyMap& PropMap, - ObjCContainerDecl::PropertyMap& SuperPropMap) { + ObjCContainerDecl::PropertyMap &PropMap, + ObjCContainerDecl::PropertyMap &SuperPropMap) { if (ObjCInterfaceDecl *IDecl = dyn_cast<ObjCInterfaceDecl>(CDecl)) { for (ObjCContainerDecl::prop_iterator P = IDecl->prop_begin(), E = IDecl->prop_end(); P != E; ++P) { @@ -1491,7 +1491,7 @@ void Sema::CollectImmediateProperties(ObjCContainerDecl *CDecl, /// properties to be implemented in super class(s) and also coming from their /// conforming protocols. static void CollectSuperClassPropertyImplementations(ObjCInterfaceDecl *CDecl, - ObjCInterfaceDecl::PropertyMap& PropMap) { + ObjCInterfaceDecl::PropertyMap &PropMap) { if (ObjCInterfaceDecl *SDecl = CDecl->getSuperClass()) { while (SDecl) { SDecl->collectPropertiesToImplement(PropMap); |