Fix macro to work correctly under 10.7 SDK / iOS 4 SDK
This commit is contained in:
parent
43b05d7ceb
commit
c80bfef9e3
1 changed files with 2 additions and 2 deletions
|
|
@ -93,8 +93,8 @@ typedef enum {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@interface AFURLConnectionOperation : NSOperation <NSURLConnectionDelegate,
|
@interface AFURLConnectionOperation : NSOperation <NSURLConnectionDelegate,
|
||||||
#if (defined(__IPHONE_OS_VERSION_MIN_REQUIRED) && __IPHONE_OS_VERSION_MIN_REQUIRED >= __IPHONE_5_0) || \
|
#if (defined(__IPHONE_OS_VERSION_MIN_REQUIRED) && defined(__IPHONE_5_0) && __IPHONE_OS_VERSION_MIN_REQUIRED >= __IPHONE_5_0) || \
|
||||||
(defined(__MAC_OS_X_VERSION_MIN_REQUIRED) && __MAC_OS_X_VERSION_MIN_REQUIRED >= __MAC_10_8)
|
(defined(__MAC_OS_X_VERSION_MIN_REQUIRED) && defined(__MAC_10_8) && __MAC_OS_X_VERSION_MIN_REQUIRED >= __MAC_10_8)
|
||||||
NSURLConnectionDataDelegate,
|
NSURLConnectionDataDelegate,
|
||||||
#endif
|
#endif
|
||||||
NSCoding, NSCopying>
|
NSCoding, NSCopying>
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue