1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

macOS: Remove macOS 10.13 preprocessor checks

The current minimum-supported Xcode (10.1) includes the macOS 10.14.1
SDK, so APIs from macOS 10.13 will always be available.
This commit is contained in:
reuk 2022-07-19 14:24:29 +01:00
parent 9712775e5b
commit 7545fbcf3e
No known key found for this signature in database
GPG key ID: FCB43929F012EE5C
5 changed files with 0 additions and 17 deletions

View file

@ -341,10 +341,8 @@ private:
const auto codecType = []
{
#if defined (MAC_OS_X_VERSION_10_13) && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_13
if (@available (macOS 10.13, *))
return AVVideoCodecTypeJPEG;
#endif
return AVVideoCodecJPEG;
}();