aboutsummaryrefslogtreecommitdiff
path: root/test/SemaObjC/property-9-impl-method.m
diff options
context:
space:
mode:
Diffstat (limited to 'test/SemaObjC/property-9-impl-method.m')
-rw-r--r--test/SemaObjC/property-9-impl-method.m3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/SemaObjC/property-9-impl-method.m b/test/SemaObjC/property-9-impl-method.m
index c97f38891190..06cb30482c82 100644
--- a/test/SemaObjC/property-9-impl-method.m
+++ b/test/SemaObjC/property-9-impl-method.m
@@ -55,10 +55,11 @@ NSSize minimumSize;
@implementation OrganizerTabView
@dynamic tabHeaderView, headerRect, minimumSize;
--(CGFloat) tabAreaThickness {}
+-(CGFloat) tabAreaThickness { return 0; }
-(NSRectEdge) rectEdgeForTabs {
NSRect dummy, result = {};
NSDivideRect(self.bounds, &result, &dummy, self.tabAreaThickness, self.rectEdgeForTabs);
+ return 0;
}
@end