From: K.Kosako Date: Mon, 2 May 2016 13:50:37 +0000 (+0900) Subject: change OnigCodePoint type to unsigned int X-Git-Tag: v6.0.0^2~20 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=223871f2b5a2f8bf3d26ce73c70229deade3f762;p=onig change OnigCodePoint type to unsigned int --- diff --git a/src/oniguruma.h b/src/oniguruma.h index 38dd9cc..a0f8479 100644 --- a/src/oniguruma.h +++ b/src/oniguruma.h @@ -100,7 +100,7 @@ extern "C" { # include typedef ULONG_PTR OnigCodePoint; #else -typedef unsigned long OnigCodePoint; +typedef unsigned int OnigCodePoint; #endif typedef unsigned char OnigUChar; typedef unsigned int OnigCtype;