< Previous by Date | Date Index | Next by Date > |
Thread Index | Next in Thread > |
On iOS/MacOS (at least with current SDKs), MacTypes.h
does declare UInt8
/UInt16
/etc for unsigned types. But, for signed types, MacTypes.h
defines them as SInt8
/etc, rather than the Int8
that the rest of the codebase expects. This simply adds some typedefs for the signed types.
(Also, there was a minor error in the same block with a comment that accidentally was prefixed with #
, so the preprocessor was attempting to pick it up)
https://github.com/resiprocate/resiprocate/pull/34
—
Reply to this email directly or view it on GitHub.