From: Owen Shepherd Date: Mon, 7 Jan 2013 15:09:19 +0000 (+0000) Subject: char16_t/char32_t were incorrectly defined as int*_t rather than uint*_t X-Git-Url: https://pd.if.org/git/?p=pdclib.old;a=commitdiff_plain;h=97f49cfce543ffb1231e9f7aa774796a3e8fb912 char16_t/char32_t were incorrectly defined as int*_t rather than uint*_t --- diff --git a/internals/_PDCLIB_int.h b/internals/_PDCLIB_int.h index 0c48f33..134123a 100644 --- a/internals/_PDCLIB_int.h +++ b/internals/_PDCLIB_int.h @@ -314,8 +314,8 @@ extern char _PDCLIB_Xdigits[]; /* -------------------------------------------------------------------------- */ #ifndef __cplusplus -typedef _PDCLIB_int16_t _PDCLIB_char16_t; -typedef _PDCLIB_int32_t _PDCLIB_char32_t; +typedef _PDCLIB_uint16_t _PDCLIB_char16_t; +typedef _PDCLIB_uint32_t _PDCLIB_char32_t; #else typedef char16_t _PDCLIB_char16_t; typedef char32_t _PDCLIB_char32_t;