From 97f49cfce543ffb1231e9f7aa774796a3e8fb912 Mon Sep 17 00:00:00 2001 From: Owen Shepherd Date: Mon, 7 Jan 2013 15:09:19 +0000 Subject: [PATCH] char16_t/char32_t were incorrectly defined as int*_t rather than uint*_t --- internals/_PDCLIB_int.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.40.0