From 7616a0c2898b38b86404e7b0afa635e0bf786677 Mon Sep 17 00:00:00 2001 From: David Mitchell Date: Sun, 24 Nov 2013 14:44:40 +0000 Subject: [PATCH] XS::APItest: remove unused var (see Message-ID: <20131121221646.GB21945@fysh.org>) --- ext/XS-APItest/APItest.xs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ext/XS-APItest/APItest.xs b/ext/XS-APItest/APItest.xs index 40eaa96..f877047 100644 --- a/ext/XS-APItest/APItest.xs +++ b/ext/XS-APItest/APItest.xs @@ -2545,13 +2545,12 @@ void test_rv2cv_op_cv() PROTOTYPE: PREINIT: - GV *troc_gv, *wibble_gv; + GV *troc_gv; CV *troc_cv; OP *o; CODE: troc_gv = gv_fetchpv("XS::APItest::test_rv2cv_op_cv", 0, SVt_PVGV); troc_cv = get_cv("XS::APItest::test_rv2cv_op_cv", 0); - wibble_gv = gv_fetchpv("XS::APItest::wibble", 0, SVt_PVGV); o = newCVREF(0, newGVOP(OP_GV, 0, troc_gv)); if (rv2cv_op_cv(o, 0) != troc_cv) croak_fail(); if (rv2cv_op_cv(o, RV2CVOPCV_RETURN_NAME_GV) != (CV*)troc_gv) -- 2.7.4