r203588 - Remove trailing whitespace introduced in r203028.
Bob Wilson
bob.wilson at apple.com
Tue Mar 11 10:17:16 PDT 2014
Author: bwilson
Date: Tue Mar 11 12:17:16 2014
New Revision: 203588
URL: http://llvm.org/viewvc/llvm-project?rev=203588&view=rev
Log:
Remove trailing whitespace introduced in r203028.
Modified:
cfe/trunk/lib/Sema/SemaObjCProperty.cpp
cfe/trunk/test/SemaObjC/default-synthesize-3.m
Modified: cfe/trunk/lib/Sema/SemaObjCProperty.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Sema/SemaObjCProperty.cpp?rev=203588&r1=203587&r2=203588&view=diff
==============================================================================
--- cfe/trunk/lib/Sema/SemaObjCProperty.cpp (original)
+++ cfe/trunk/lib/Sema/SemaObjCProperty.cpp Tue Mar 11 12:17:16 2014
@@ -1540,12 +1540,12 @@ static bool SuperClassImplementsProperty
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)
Modified: cfe/trunk/test/SemaObjC/default-synthesize-3.m
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/SemaObjC/default-synthesize-3.m?rev=203588&r1=203587&r2=203588&view=diff
==============================================================================
--- cfe/trunk/test/SemaObjC/default-synthesize-3.m (original)
+++ cfe/trunk/test/SemaObjC/default-synthesize-3.m Tue Mar 11 12:17:16 2014
@@ -202,10 +202,10 @@ typedef NSObject<Fooing> FooObject;
@protocol r16089191Protocol
@property (readonly) NSURL *fileURL;
- at property (copy) NSURL *file;
- at property (copy) NSURL *fileSys;
- at property (copy) NSURL *fileLog;
- at property (copy) NSURL *fileKerl;
+ at property (copy) NSURL *file;
+ at property (copy) NSURL *fileSys;
+ at property (copy) NSURL *fileLog;
+ at property (copy) NSURL *fileKerl;
@end
@interface SubClass : SuperClass <r16089191Protocol>
More information about the cfe-commits
mailing list