]> granicus.if.org Git - clang/commitdiff
Remove trailing whitespace introduced in r203028.
authorBob Wilson <bob.wilson@apple.com>
Tue, 11 Mar 2014 17:17:16 +0000 (17:17 +0000)
committerBob Wilson <bob.wilson@apple.com>
Tue, 11 Mar 2014 17:17:16 +0000 (17:17 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@203588 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Sema/SemaObjCProperty.cpp
test/SemaObjC/default-synthesize-3.m

index 3a98f6324aed5f73795c794f58fd0ca082f343ef..0ad935ea64e4b940b57717063b3a1be25321b252 100644 (file)
@@ -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)
index 94065431691520cd1b340651bc87f0bc30bb702e..c91597462d9114567d469dcb796ea13f0e39145b 100644 (file)
@@ -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>