Fix -Wundef warning for TARGET_OS_IOS on older Apple SDKs

This commit is contained in:
Fletcher Dunn
2026-05-28 19:38:49 -07:00
parent 39a50f40f7
commit 98d8d95aa1
+1 -1
View File
@@ -167,7 +167,7 @@
#if TARGET_OS_TV
#define IsTVOS() true
#define IsPosix() true
#elif TARGET_OS_IOS
#elif defined(TARGET_OS_IOS) && TARGET_OS_IOS
#define IsIOS() true
#define IsPosix() true
#else