summaryrefslogtreecommitdiff
path: root/mathoms.c
diff options
context:
space:
mode:
authorAndy Lester <andy@petdance.com>2016-12-02 22:07:26 -0500
committerDavid Mitchell <davem@iabyn.com>2016-12-05 12:37:06 +0000
commite9b8343fa465fe1f17441bfe1c1349ea013e9288 (patch)
tree9a86dd13acd31780cb26e4a36c97babdf581e6ae /mathoms.c
parent1eb7a0dec318d22fee300bd4348df9d7c80e2a2a (diff)
downloadperl-e9b8343fa465fe1f17441bfe1c1349ea013e9288.tar.gz
Clean up warnings uncovered by 'clang -Weverything'.
For: RT #130195
Diffstat (limited to 'mathoms.c')
-rw-r--r--mathoms.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/mathoms.c b/mathoms.c
index a3f20e79f4..c74a38625a 100644
--- a/mathoms.c
+++ b/mathoms.c
@@ -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));