Skip to content

Commit

Permalink
silencing non-exhaustive switch warning
Browse files Browse the repository at this point in the history
  • Loading branch information
RoyalPineapple committed Jul 30, 2024
1 parent 0176e75 commit 877c70d
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_MIN_REQUIRED >= 17040
case UIDatePickerModeYearAndMonth:
printf(" UIDatePickerModeYearAndMonth");
break;
#endif
}
printf(")");
printf(" (minute interval: %s)", @(datePicker.minuteInterval).stringValue.UTF8String);
Expand Down

0 comments on commit 877c70d

Please sign in to comment.