summaryrefslogtreecommitdiff
path: root/pp_ctl.c
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2011-11-09 08:29:58 -0700
committerKarl Williamson <public@khwilliamson.com>2011-11-09 09:04:33 -0700
commit9d63fa07f5cff6fc12e4f94d4182560e5cfed77e (patch)
tree3a88c166919c4d3c3d714a24574df0a93db14f4c /pp_ctl.c
parenta1dde8dee0a7efc73bdb7c985e74f1461e153f12 (diff)
downloadperl-9d63fa07f5cff6fc12e4f94d4182560e5cfed77e.tar.gz
Change __attribute_unused__ to PERL_UNUSED_DECL
The latter is the Perl standard way of making this declaration
Diffstat (limited to 'pp_ctl.c')
-rw-r--r--pp_ctl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pp_ctl.c b/pp_ctl.c
index 8a8079238b..85ee20f451 100644
--- a/pp_ctl.c
+++ b/pp_ctl.c
@@ -2884,8 +2884,8 @@ PP(pp_goto)
SAVEFREESV(cv); /* later, undo the 'avoid premature free' hack */
if (CvISXSUB(cv)) {
OP* const retop = cx->blk_sub.retop;
- SV **newsp __attribute__unused__;
- I32 gimme __attribute__unused__;
+ SV **newsp PERL_UNUSED_DECL;
+ I32 gimme PERL_UNUSED_DECL;
if (reified) {
I32 index;
for (index=0; index<items; index++)