diff options
author | Karl Williamson <khw@cpan.org> | 2016-09-19 15:37:52 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2016-09-19 22:29:53 -0600 |
commit | edc2c47a7af2b67f9541072b69a97b21f56cdcd4 (patch) | |
tree | 2658b26790131e2a058c5aaa81cdfa3b2244c97c /proto.h | |
parent | 933f1527ef5cdf83dd6c18ffb5dd61bf54a975ee (diff) | |
download | perl-edc2c47a7af2b67f9541072b69a97b21f56cdcd4.tar.gz |
utf8.c: Fix bug in new _is_utf8_char_helper() function
This bug was exposed by the tests that I'm still developing
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3813,7 +3813,7 @@ STATIC SV * S_incpush_if_exists(pTHX_ AV *const av, SV *dir, SV *const stem); # endif #endif #if !defined(PERL_NO_INLINE_FUNCTIONS) -PERL_CALLCONV STRLEN Perl__is_utf8_char_helper(const U8 * const s, const U8 * const e, const U32 flags) +PERL_CALLCONV STRLEN Perl__is_utf8_char_helper(const U8 * const s, const U8 * e, const U32 flags) __attribute__warn_unused_result__ __attribute__pure__; #define PERL_ARGS_ASSERT__IS_UTF8_CHAR_HELPER \ |