This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
915f531
)
APItest: Move PERL_UNUSED_ARG after decl
author
Father Chrysostomos
<sprout@cpan.org>
Wed, 12 Oct 2011 12:44:05 +0000
(
05:44
-0700)
committer
Father Chrysostomos
<sprout@cpan.org>
Wed, 12 Oct 2011 12:44:32 +0000
(
05:44
-0700)
ext/XS-APItest/APItest.xs
patch
|
blob
|
blame
|
history
diff --git
a/ext/XS-APItest/APItest.xs
b/ext/XS-APItest/APItest.xs
index
d1d3fc0
..
640c0ec
100644
(file)
--- a/
ext/XS-APItest/APItest.xs
+++ b/
ext/XS-APItest/APItest.xs
@@
-1065,8
+1065,8
@@
filter_call(pTHX_ int idx, SV *buf_sv, int maxlen)
static AV *
myget_linear_isa(pTHX_ HV *stash, U32 level) {
- PERL_UNUSED_ARG(level);
GV **gvp = (GV **)hv_fetchs(stash, "ISA", 0);
+ PERL_UNUSED_ARG(level);
return gvp && *gvp && GvAV(*gvp)
? GvAV(*gvp)
: (AV *)sv_2mortal((SV *)newAV());