From d739d27d3ebeb2deed70d9d0b7cf78959c1375f0 Mon Sep 17 00:00:00 2001 From: Father Chrysostomos Date: Sun, 21 Sep 2014 12:52:59 -0700 Subject: pp.h: Remove SETsv and SETsvUN With commit 6f1401dc2a, most of the old overload macros stopped being used. d4f7673c78 removed them. SETsv and SETsvUN were only used by the removed macros, and are now completetly unused in core and on CPAN. --- pp.h | 9 --------- 1 file changed, 9 deletions(-) (limited to 'pp.h') diff --git a/pp.h b/pp.h index d0691f89e9..00e942059a 100644 --- a/pp.h +++ b/pp.h @@ -479,15 +479,6 @@ Does not use C. See also C, C and C. #define opASSIGN (PL_op->op_flags & OPf_STACKED) -#define SETsv(sv) STMT_START { \ - if (opASSIGN || (SvFLAGS(TARG) & SVs_PADMY)) \ - { sv_setsv(TARG, (sv)); SETTARG; } \ - else SETs(sv); } STMT_END - -#define SETsvUN(sv) STMT_START { \ - if (SvFLAGS(TARG) & SVs_PADMY) \ - { sv_setsv(TARG, (sv)); SETTARG; } \ - else SETs(sv); } STMT_END /* =for apidoc mU||LVRET -- cgit v1.2.1