mirror of https://github.com/mpv-player/mpv
osdep/macosx: add default switch cases to suppress Wswitch
This commit is contained in:
parent
f84024b9dd
commit
ab8cc64b19
|
@ -292,6 +292,8 @@ void cocoa_set_mpv_handle(struct mpv_handle *ctx)
|
|||
_ctx = nil;
|
||||
break;
|
||||
}
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -307,6 +307,8 @@
|
|||
[self handlePropertyChange:(mpv_event_property *)event->data];
|
||||
break;
|
||||
}
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue