diff options
author | Father Chrysostomos <sprout@cpan.org> | 2014-12-19 16:42:30 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2014-12-19 16:42:37 -0800 |
commit | 898c5644d1595a2fee23494ee81ea932edb930c1 (patch) | |
tree | d7f256104b15a067fe7cbc5c18d624b2e823d0cf /pp.h | |
parent | 7b46bf4c9fea9c8ec5466c74e7b96886d1a4f1da (diff) | |
download | perl-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.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; \ |