From d4ab97803d2bc15a8856746c7698887b8821f1b5 Mon Sep 17 00:00:00 2001 From: Rose <83477269+AtariDreams@users.noreply.github.com> Date: Fri, 12 Nov 2021 12:03:30 -0500 Subject: [PATCH] Fix objective-c logic to only include objective-c if the target is a Mac, or is explicitly told to have objective-c --- CoreFoundation/Base.subproj/ForFoundationOnly.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CoreFoundation/Base.subproj/ForFoundationOnly.h b/CoreFoundation/Base.subproj/ForFoundationOnly.h index 1f80febdff..de95e00f74 100644 --- a/CoreFoundation/Base.subproj/ForFoundationOnly.h +++ b/CoreFoundation/Base.subproj/ForFoundationOnly.h @@ -59,7 +59,7 @@ CF_IMPLICIT_BRIDGING_DISABLED #include #endif -#if (INCLUDE_OBJC || TARGET_OS_MAC || TARGET_OS_WIN32) && !DEPLOYMENT_RUNTIME_SWIFT +#if (INCLUDE_OBJC || TARGET_OS_MAC) && !DEPLOYMENT_RUNTIME_SWIFT #include #endif