diff options
author | Steve Hay <SteveHay@planit.com> | 2005-06-22 13:25:16 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2005-06-22 13:25:16 +0000 |
commit | 454f1e2628e3c3cf05341675e973e8df77c9b0ae (patch) | |
tree | a9287948a4d0d35e9ef2e5291db122dc37c6b064 | |
parent | 3b9e3074fddbae8590b8fbc95a2eac9fa7fc29f0 (diff) | |
download | perl-454f1e2628e3c3cf05341675e973e8df77c9b0ae.tar.gz |
Silence yet more bcc32 compiler warnings
("Code has no effect")
p4raw-id: //depot/perl@24939
-rw-r--r-- | hv.c | 4 | ||||
-rw-r--r-- | pp_ctl.c | 2 | ||||
-rw-r--r-- | pp_hot.c | 2 |
3 files changed, 4 insertions, 4 deletions
@@ -134,7 +134,7 @@ Perl_hek_dup(pTHX_ HEK *source, CLONE_PARAMS* param) if (shared) { /* We already shared this hash key. */ - share_hek_hek(shared); + (void)share_hek_hek(shared); } else { shared @@ -176,7 +176,7 @@ Perl_he_dup(pTHX_ HE *e, bool shared, CLONE_PARAMS* param) if (shared) { /* We already shared this hash key. */ - share_hek_hek(shared); + (void)share_hek_hek(shared); } else { shared @@ -295,7 +295,7 @@ PP(pp_substcont) mg->mg_len = i; } if (old != rx) - ReREFCNT_inc(rx); + (void)ReREFCNT_inc(rx); cx->sb_rxtainted |= RX_MATCH_TAINTED(rx); rxres_save(&cx->sb_rxres, rx); RETURNOP(pm->op_pmreplstart); @@ -2195,7 +2195,7 @@ PP(pp_subst) if (!c) { register PERL_CONTEXT *cx; SPAGAIN; - ReREFCNT_inc(rx); + (void)ReREFCNT_inc(rx); PUSHSUBST(cx); RETURNOP(cPMOP->op_pmreplroot); } |