diff options
author | Andy Lester <andy@petdance.com> | 2016-12-02 22:07:26 -0500 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2016-12-05 12:37:06 +0000 |
commit | e9b8343fa465fe1f17441bfe1c1349ea013e9288 (patch) | |
tree | 9a86dd13acd31780cb26e4a36c97babdf581e6ae /mathoms.c | |
parent | 1eb7a0dec318d22fee300bd4348df9d7c80e2a2a (diff) | |
download | perl-e9b8343fa465fe1f17441bfe1c1349ea013e9288.tar.gz |
Clean up warnings uncovered by 'clang -Weverything'.
For: RT #130195
Diffstat (limited to 'mathoms.c')
-rw-r--r-- | mathoms.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1688,6 +1688,7 @@ Perl_is_utf8_char_buf(const U8 *buf, const U8* buf_end) UV Perl_valid_utf8_to_uvuni(pTHX_ const U8 *s, STRLEN *retlen) { + PERL_UNUSED_CONTEXT; PERL_ARGS_ASSERT_VALID_UTF8_TO_UVUNI; return NATIVE_TO_UNI(valid_utf8_to_uvchr(s, retlen)); @@ -1750,6 +1751,7 @@ See L</utf8n_to_uvchr> for details on when the REPLACEMENT CHARACTER is returned UV Perl_utf8_to_uvuni(pTHX_ const U8 *s, STRLEN *retlen) { + PERL_UNUSED_CONTEXT; PERL_ARGS_ASSERT_UTF8_TO_UVUNI; return NATIVE_TO_UNI(valid_utf8_to_uvchr(s, retlen)); |