We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25b3bcb commit 7c1ecceCopy full SHA for 7c1ecce
inline.h
@@ -2998,7 +2998,6 @@ Perl_utf8n_to_uvchr_msgs(const U8 *s,
2998
2999
const U8 * const s0 = s;
3000
const U8 * send = s0 + curlen;
3001
- UV type;
3002
UV uv;
3003
3004
PERL_ARGS_ASSERT_UTF8N_TO_UVCHR_MSGS;
@@ -3035,7 +3034,7 @@ Perl_utf8n_to_uvchr_msgs(const U8 *s,
3035
3034
return *s;
3036
}
3037
3038
- type = PL_strict_utf8_dfa_tab[*s];
+ PERL_UINT_FAST8_T type = PL_strict_utf8_dfa_tab[*s];
3039
3040
UV state = PL_strict_utf8_dfa_tab[256 + type];
3041
uv = (0xff >> type) & NATIVE_UTF8_TO_I8(*s);
0 commit comments