Skip to content

Commit d7fbea4

Browse files
authored
Restore use of #include
The change made in #663 were overwritten by #709. This change restores the switch from `#import` to `#include`. The reason for this change is: Clang's MSVC compatibility does not handle `#import` statements outside of of objc. > #import of type library is an unsupported Microsoft feature
1 parent a129b72 commit d7fbea4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CoreFoundation/Base.subproj/ForFoundationOnly.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ CF_IMPLICIT_BRIDGING_DISABLED
6363
#endif
6464

6565
#if (INCLUDE_OBJC || DEPLOYMENT_TARGET_MACOSX || DEPLOYMENT_TARGET_EMBEDDED || DEPLOYMENT_TARGET_WINDOWS) && !DEPLOYMENT_RUNTIME_SWIFT
66-
#import <objc/message.h>
66+
#include <objc/message.h>
6767
#endif
6868

6969
// ---- CFBundle material ----------------------------------------

0 commit comments

Comments
 (0)