diff options
| author | Bob Wilson <bob.wilson@apple.com> | 2014-03-11 17:17:16 +0000 |
|---|---|---|
| committer | Bob Wilson <bob.wilson@apple.com> | 2014-03-11 17:17:16 +0000 |
| commit | 3ca7904feaeb0de6e789d5720cebb68f28391a4a (patch) | |
| tree | 32b2bc25b635725ed6aec35bf76bafa7b465f23f | |
| parent | ef3d68009382d2888a397632aaa24c6c0a975525 (diff) | |
| download | bcm5719-llvm-3ca7904feaeb0de6e789d5720cebb68f28391a4a.tar.gz bcm5719-llvm-3ca7904feaeb0de6e789d5720cebb68f28391a4a.zip | |
Remove trailing whitespace introduced in r203028.
llvm-svn: 203588
| -rw-r--r-- | clang/lib/Sema/SemaObjCProperty.cpp | 4 | ||||
| -rw-r--r-- | clang/test/SemaObjC/default-synthesize-3.m | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/clang/lib/Sema/SemaObjCProperty.cpp b/clang/lib/Sema/SemaObjCProperty.cpp index 3a98f6324ae..0ad935ea64e 100644 --- a/clang/lib/Sema/SemaObjCProperty.cpp +++ b/clang/lib/Sema/SemaObjCProperty.cpp @@ -1540,12 +1540,12 @@ static bool SuperClassImplementsProperty(ObjCInterfaceDecl *IDecl, bool SuperClassImplementsSetter = false; if (Prop->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_readonly) SuperClassImplementsSetter = true; - + while (IDecl->getSuperClass()) { ObjCInterfaceDecl *SDecl = IDecl->getSuperClass(); if (!SuperClassImplementsGetter && SDecl->getInstanceMethod(Prop->getGetterName())) SuperClassImplementsGetter = true; - + if (!SuperClassImplementsSetter && SDecl->getInstanceMethod(Prop->getSetterName())) SuperClassImplementsSetter = true; if (SuperClassImplementsGetter && SuperClassImplementsSetter) diff --git a/clang/test/SemaObjC/default-synthesize-3.m b/clang/test/SemaObjC/default-synthesize-3.m index 94065431691..c91597462d9 100644 --- a/clang/test/SemaObjC/default-synthesize-3.m +++ b/clang/test/SemaObjC/default-synthesize-3.m @@ -202,10 +202,10 @@ typedef NSObject<Fooing> FooObject; @protocol r16089191Protocol @property (readonly) NSURL *fileURL; -@property (copy) NSURL *file; -@property (copy) NSURL *fileSys; -@property (copy) NSURL *fileLog; -@property (copy) NSURL *fileKerl; +@property (copy) NSURL *file; +@property (copy) NSURL *fileSys; +@property (copy) NSURL *fileLog; +@property (copy) NSURL *fileKerl; @end @interface SubClass : SuperClass <r16089191Protocol> |

