-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support building shared library of ucd #1
Changes from all commits
4b332e8
29cb788
74d33b8
c97880f
c857195
d112ceb
6bfc5c8
70d9000
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,7 +44,7 @@ | |
#define iswspace ucd_isspace | ||
#define iswupper ucd_isupper | ||
#define iswxdigit ucd_isxdigit | ||
#define tolower ucd_tolower | ||
#define toupper udc_toupper | ||
// #define tolower ucd_tolower | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If I don't uncomment them, it causes errors in my code since I am using |
||
// #define toupper udc_toupper | ||
|
||
#endif |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This symlink causes errors on Windows when invoking |
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Without
!defined(__APPLE__)
it causes errors foriOS
.