Skip to content

Commit

Permalink
silencing non-exhaustive switch warning (#1297)
Browse files Browse the repository at this point in the history
silencing non-exhaustive switch warning
  • Loading branch information
RoyalPineapple authored Aug 1, 2024
1 parent 0176e75 commit 4b8224d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Sources/KIF/Additions/UIView-Debugging.m
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,11 @@ - (void)printDatePickerState {
case UIDatePickerModeCountDownTimer:
printf(" UIDatePickerModeCountDownTimer");
break;
#if __IPHONE_OS_VERSION_MAX_ALLOWED >= 170400 //__IPHONE_17_4
case UIDatePickerModeYearAndMonth:
printf(" UIDatePickerModeYearAndMonth");
break;
#endif
}
printf(")");
printf(" (minute interval: %s)", @(datePicker.minuteInterval).stringValue.UTF8String);
Expand Down

0 comments on commit 4b8224d

Please sign in to comment.