Skip to content

Commit

Permalink
fixes iOS5 conditionals
Browse files Browse the repository at this point in the history
  • Loading branch information
steipete committed Sep 25, 2011
1 parent c255e76 commit 0207157
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions PSCompatibility.h
Expand Up @@ -25,9 +25,9 @@ __VA_ARGS__ \
}

#ifndef kCFCoreFoundationVersionNumber_iPhoneOS_5_0
#define kCFCoreFoundationVersionNumber_iPhoneOS_5_0 666.1
#define kCFCoreFoundationVersionNumber_iPhoneOS_5_0 674.0
#endif
#if __IPHONE_OS_VERSION_MAX_ALLOWED >= 50000
#if __IPHONE_OS_VERSION_MAX_ALLOWED >= 40000
#define IF_IOS5_OR_GREATER(...) \
if (kCFCoreFoundationVersionNumber >= kCFCoreFoundationVersionNumber_iPhoneOS_5_0) \
{ \
Expand Down

0 comments on commit 0207157

Please sign in to comment.