Skip to content

Commit

Permalink
Use a macro for the macOS version number (#99)
Browse files Browse the repository at this point in the history
  • Loading branch information
Widcket committed Oct 19, 2020
1 parent 064b990 commit aa70ec4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SimpleKeychain/A0SimpleKeychain.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ typedef NS_ENUM(NSInteger, A0SimpleKeychainItemAccessible) {

#define A0ErrorDomain @"com.auth0.simplekeychain"

#define A0LocalAuthenticationCapable (TARGET_OS_IOS && __IPHONE_OS_VERSION_MIN_REQUIRED >= 80000) || (TARGET_OS_OSX && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101200)
#define A0LocalAuthenticationCapable (TARGET_OS_IOS && __IPHONE_OS_VERSION_MIN_REQUIRED >= 80000) || (TARGET_OS_OSX && __MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_2)


/**
Expand Down

0 comments on commit aa70ec4

Please sign in to comment.