Skip to content

Commit 4b8224d

Browse files
silencing non-exhaustive switch warning (#1297)
silencing non-exhaustive switch warning
1 parent 0176e75 commit 4b8224d

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Sources/KIF/Additions/UIView-Debugging.m

+5
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,11 @@ - (void)printDatePickerState {
136136
case UIDatePickerModeCountDownTimer:
137137
printf(" UIDatePickerModeCountDownTimer");
138138
break;
139+
#if __IPHONE_OS_VERSION_MAX_ALLOWED >= 170400 //__IPHONE_17_4
140+
case UIDatePickerModeYearAndMonth:
141+
printf(" UIDatePickerModeYearAndMonth");
142+
break;
143+
#endif
139144
}
140145
printf(")");
141146
printf(" (minute interval: %s)", @(datePicker.minuteInterval).stringValue.UTF8String);

0 commit comments

Comments
 (0)