In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/d3db15144cd5a765432a4454baa35bc2e847a1eb?hp=b53eee5dcaba7597084a8dcdea596adfbc2b9544>
- Log ----------------------------------------------------------------- commit d3db15144cd5a765432a4454baa35bc2e847a1eb Author: Jasmine Ngan <[email protected]> Date: Tue Feb 24 14:37:17 2015 +0000 fix some spurious PERL_UNUSED_ARG/VAR() usage The 'output_warning' param is actually used, and 'items' is not a function argument but a local variable. ----------------------------------------------------------------------- Summary of changes: AUTHORS | 1 + dquote_static.c | 2 -- perl.c | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/AUTHORS b/AUTHORS index 97b8558..c1b6ae2 100644 --- a/AUTHORS +++ b/AUTHORS @@ -534,6 +534,7 @@ Jared Rhine <[email protected]> Jari Aalto <[email protected]> Jarkko Hietaniemi <[email protected]> Jasmine Ahuja <[email protected]> +Jasmine Ngan <[email protected]> Jason A. Smith <[email protected]> Jason E. Stewart <[email protected]> Jason Hord <[email protected]> diff --git a/dquote_static.c b/dquote_static.c index f993f53..93c023b 100644 --- a/dquote_static.c +++ b/dquote_static.c @@ -218,8 +218,6 @@ S_grok_bslash_x(pTHX_ char **s, UV *uv, const char** error_msg, PERL_ARGS_ASSERT_GROK_BSLASH_X; - PERL_UNUSED_ARG(output_warning); - assert(**s == 'x'); (*s)++; diff --git a/perl.c b/perl.c index d4deb9d..d41ebed 100644 --- a/perl.c +++ b/perl.c @@ -1772,7 +1772,7 @@ S_Internals_V(pTHX_ CV *cv) # endif ; PERL_UNUSED_ARG(cv); - PERL_UNUSED_ARG(items); + PERL_UNUSED_VAR(items); EXTEND(SP, entries); -- Perl5 Master Repository
