This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
various cleanups
[perl5.git] / toke.c
diff --git a/toke.c b/toke.c
index 4cab2a2..49dc8b7 100644 (file)
--- a/toke.c
+++ b/toke.c
@@ -5540,12 +5540,12 @@ S_new_constant(pTHX_ char *s, STRLEN len, char *key, SV *sv, SV *pv, char *type)
        STRLEN n_a;
        sv_catpv(ERRSV, "Propagated");
        yyerror(SvPV(ERRSV, n_a)); /* Duplicates the message inside eval */
-       POPs ;
+       (void)POPs;
        res = SvREFCNT_inc(sv);
     }
     else {
        res = POPs;
-       SvREFCNT_inc(res);
+       (void)SvREFCNT_inc(res);
     }
     
     PUTBACK ;