Skip to content

Commit c74d4e9

Browse files
committed
Fix check for macOS 10.10.
The constant is 101000, not 10100, but fortunately, this worked anyway since 10.9's constant is 1090, and nothing else was defined in between.
1 parent 5b8568b commit c74d4e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/_macosx.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1070
1616
#define COMPILING_FOR_10_7
1717
#endif
18-
#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 10100
18+
#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101000
1919
#define COMPILING_FOR_10_10
2020
#endif
2121

0 commit comments

Comments
 (0)