summaryrefslogtreecommitdiff
path: root/pp.h
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2014-12-19 16:42:30 -0800
committerFather Chrysostomos <sprout@cpan.org>2014-12-19 16:42:37 -0800
commit898c5644d1595a2fee23494ee81ea932edb930c1 (patch)
treed7f256104b15a067fe7cbc5c18d624b2e823d0cf /pp.h
parent7b46bf4c9fea9c8ec5466c74e7b96886d1a4f1da (diff)
downloadperl-898c5644d1595a2fee23494ee81ea932edb930c1.tar.gz
01234567890123456789012345678901234567890123456789
pp.h: Remove stack-popping from void overload code There is no need to pop the stack in void context, as every void-context op is followed by something that resets the stack.
Diffstat (limited to 'pp.h')
-rw-r--r--pp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/pp.h b/pp.h
index f236185a0a..b8e482bd31 100644
--- a/pp.h
+++ b/pp.h
@@ -438,7 +438,7 @@ Does not use C<TARG>. See also C<XPUSHu>, C<mPUSHu> and C<PUSHu>.
{ \
SPAGAIN; \
if (gimme == G_VOID) { \
- (void)POPs; /* XXX ??? */ \
+ NOOP; \
} \
else if (gimme == G_ARRAY) { \
SSize_t i; \