summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2018-03-28 18:01:50 -0600
committerKarl Williamson <khw@cpan.org>2018-03-31 15:36:46 -0600
commit341bb5b701cc0a72be8a81da44c67546e0a62436 (patch)
tree410747068307d4755f6a72a723fd0d07ebfce6b4 /proto.h
parent10091cc29a598c1970b932fb3eb8c9df87f3cf01 (diff)
downloadperl-341bb5b701cc0a72be8a81da44c67546e0a62436.tar.gz
regen/mk_invlists.pl: Inversion maps don't have to be IV
An inversion map currently is used only for Unicode-range code points, which can fit in an int, so don't use the space unnecessarily
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/proto.h b/proto.h
index ff049bf665..82ab3ebe91 100644
--- a/proto.h
+++ b/proto.h
@@ -5967,7 +5967,7 @@ STATIC bool S_isa_lookup(pTHX_ HV *stash, const char * const name, STRLEN len, U
assert(stash); assert(name)
#endif
#if defined(PERL_IN_UTF8_C)
-STATIC UV S__to_utf8_case(pTHX_ const UV uv1, const U8 *p, U8* ustrp, STRLEN *lenp, SV *invlist, const IV * const invmap, const int * const * const aux_tables, const U8 * const aux_table_lengths, const char * const normal);
+STATIC UV S__to_utf8_case(pTHX_ const UV uv1, const U8 *p, U8* ustrp, STRLEN *lenp, SV *invlist, const int * const invmap, const int * const * const aux_tables, const U8 * const aux_table_lengths, const char * const normal);
#define PERL_ARGS_ASSERT__TO_UTF8_CASE \
assert(p); assert(ustrp); assert(invlist); assert(invmap); assert(normal)
STATIC U32 S_check_and_deprecate(pTHX_ const U8 * p, const U8 ** e, const unsigned type, const bool use_locale, const char * const file, const unsigned line);