From 7be5bd17122a532f2806c8321c9ea10a46b62c48 Mon Sep 17 00:00:00 2001 From: Florian Ragwitz Date: Wed, 13 Jul 2011 19:22:52 +0200 Subject: [PATCH] Fix a compiler warning gimme is being set by POPBLOCK, but otherwise unused. PERL_UNUSED_VAR stops the warning gcc generates for that. --- pp_ctl.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pp_ctl.c b/pp_ctl.c index 854c89d..63efd9a 100644 --- a/pp_ctl.c +++ b/pp_ctl.c @@ -5003,6 +5003,8 @@ PP(pp_continue) I32 gimme; SV **newsp; PMOP *newpm; + + PERL_UNUSED_VAR(gimme); cxix = dopoptowhen(cxstack_ix); if (cxix < 0) -- 2.7.4