diff options
author | Karl Williamson <khw@cpan.org> | 2018-03-28 18:01:50 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2018-03-31 15:36:46 -0600 |
commit | 341bb5b701cc0a72be8a81da44c67546e0a62436 (patch) | |
tree | 410747068307d4755f6a72a723fd0d07ebfce6b4 /embed.fnc | |
parent | 10091cc29a598c1970b932fb3eb8c9df87f3cf01 (diff) | |
download | perl-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 'embed.fnc')
-rw-r--r-- | embed.fnc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1798,7 +1798,7 @@ s |UV |_to_utf8_case |const UV uv1 \ |NN U8* ustrp \ |NULLOK STRLEN *lenp \ |NN SV *invlist \ - |NN const IV * const invmap \ + |NN const int * const invmap \ |NULLOK const int * const * const aux_tables \ |NULLOK const U8 * const aux_table_lengths \ |NN const char * const normal |