mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-09 23:34:20 +00:00
iOS and macOS: Use consistent capitalisation with @available syntax
This commit is contained in:
parent
e68627c9ed
commit
d0aa6d0486
8 changed files with 23 additions and 23 deletions
|
|
@ -664,7 +664,7 @@ private:
|
|||
return Trait::newFn (std::forward<Args> (args)...); \
|
||||
else if constexpr (__IPHONE_OS_VERSION_MAX_ALLOWED < fullVersion) \
|
||||
return Trait::oldFn (std::forward<Args> (args)...); \
|
||||
else if (@available (ios major ## . ## minor, *)) \
|
||||
else if (@available (iOS major ## . ## minor, *)) \
|
||||
return Trait::newFn (std::forward<Args> (args)...); \
|
||||
else \
|
||||
return Trait::oldFn (std::forward<Args> (args)...); \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue