Browse Source

Better check for __has_feature

Sam Lantinga 11 years ago
parent
commit
2d2f90200d
1 changed files with 2 additions and 2 deletions
  1. 2 2
      include/SDL_syswm.h

+ 2 - 2
include/SDL_syswm.h

@@ -208,7 +208,7 @@ struct SDL_SysWMinfo
 #if defined(SDL_VIDEO_DRIVER_COCOA)
 #if defined(SDL_VIDEO_DRIVER_COCOA)
         struct
         struct
         {
         {
-#if defined(__OBJC__) && defined(__clang__) && __has_feature(objc_arc)
+#if defined(__OBJC__) && defined(__has_feature) && __has_feature(objc_arc)
             NSWindow __unsafe_unretained *window; /* The Cocoa window */
             NSWindow __unsafe_unretained *window; /* The Cocoa window */
 #else
 #else
             NSWindow *window;                     /* The Cocoa window */
             NSWindow *window;                     /* The Cocoa window */
@@ -218,7 +218,7 @@ struct SDL_SysWMinfo
 #if defined(SDL_VIDEO_DRIVER_UIKIT)
 #if defined(SDL_VIDEO_DRIVER_UIKIT)
         struct
         struct
         {
         {
-#if defined(__OBJC__) && defined(__clang__) && __has_feature(objc_arc)
+#if defined(__OBJC__) && defined(__has_feature) && __has_feature(objc_arc)
             UIWindow __unsafe_unretained *window; /* The UIKit window */
             UIWindow __unsafe_unretained *window; /* The UIKit window */
 #else
 #else
             UIWindow *window;                     /* The UIKit window */
             UIWindow *window;                     /* The UIKit window */