Skip to content

Commit

Permalink
Better check for __has_feature
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Aug 20, 2014
1 parent 38b49c3 commit 2d2f902
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/SDL_syswm.h
Expand Up @@ -208,7 +208,7 @@ struct SDL_SysWMinfo
#if defined(SDL_VIDEO_DRIVER_COCOA)
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 */
#else
NSWindow *window; /* The Cocoa window */
Expand All @@ -218,7 +218,7 @@ struct SDL_SysWMinfo
#if defined(SDL_VIDEO_DRIVER_UIKIT)
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 */
#else
UIWindow *window; /* The UIKit window */
Expand Down

0 comments on commit 2d2f902

Please sign in to comment.