Skip to content
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

Fix for signed types on iOS/MacOS #34

Merged
merged 2 commits into from Jan 21, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 4 additions & 1 deletion rutil/compat.hxx
Expand Up @@ -144,8 +144,11 @@ typedef char Int8;
typedef short Int16;
typedef int Int32;
#else
# On Apple platforms, MacTypes.h should provide the types:
// On Apple platforms, MacTypes.h should provide the types:
#include <MacTypes.h>
typedef SInt8 Int8;
typedef SInt16 Int16;
typedef SInt32 Int32;
#endif

#if defined( TARGET_OS_IPHONE )
Expand Down