summaryrefslogtreecommitdiff
path: root/pcre_internal.h
diff options
context:
space:
mode:
authorchpe <chpe@2f5784b3-3f2a-0410-8824-cb99058d5e15>2012-10-18 18:35:08 +0000
committerchpe <chpe@2f5784b3-3f2a-0410-8824-cb99058d5e15>2012-10-18 18:35:08 +0000
commitb0ddf44ca704295685dc4a206bb1957957b84d5e (patch)
treede87f4281b5d0fda8c8ff1990504666da272542f /pcre_internal.h
parentee59e8011f8298f70413cb9fcb523e2604216a6c (diff)
downloadpcre-b0ddf44ca704295685dc4a206bb1957957b84d5e.tar.gz
Make ucp_gentype unsigned int
It's compared against unsigned values, so change it to unsigned to quit a few -Wsign-compare warnings. git-svn-id: svn://vcs.exim.org/pcre/code/trunk@1128 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'pcre_internal.h')
-rw-r--r--pcre_internal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/pcre_internal.h b/pcre_internal.h
index 1407b78..417a9f5 100644
--- a/pcre_internal.h
+++ b/pcre_internal.h
@@ -2711,7 +2711,7 @@ extern const pcre_uint32 PRIV(ucd_caseless_sets)[];
extern const ucd_record PRIV(ucd_records)[];
extern const pcre_uint8 PRIV(ucd_stage1)[];
extern const pcre_uint16 PRIV(ucd_stage2)[];
-extern const int PRIV(ucp_gentype)[];
+extern const pcre_uint32 PRIV(ucp_gentype)[];
extern const pcre_uint32 PRIV(ucp_gbtable)[];
#ifdef SUPPORT_JIT
extern const int PRIV(ucp_typerange)[];