Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit c74d4e9

Browse filesBrowse 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
Copy full SHA for c74d4e9

File tree

Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed

‎src/_macosx.m

Copy file name to clipboardExpand all lines: src/_macosx.m
+1-1Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.