From: Vincent Pit Date: Sat, 28 Feb 2009 15:51:35 +0000 (+0100) Subject: We don't need a (wrong) compatibility macro for NewOp, since we only use it on 5.10 X-Git-Tag: v0.32~4 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FVariable-Magic.git;a=commitdiff_plain;h=5da9eced4d67967716f8a45b246253d55ee01730 We don't need a (wrong) compatibility macro for NewOp, since we only use it on 5.10 --- diff --git a/Magic.xs b/Magic.xs index 590d6af..0915f4b 100644 --- a/Magic.xs +++ b/Magic.xs @@ -89,10 +89,6 @@ STATIC SV *vmg_clone(pTHX_ SV *sv, tTHX owner) { # define Newx(v, n, c) New(0, v, n, c) #endif -#ifndef NewOp -# define NewOp(m, var, c, type) Newz(m, var, c, type) -#endif - #ifndef SvMAGIC_set # define SvMAGIC_set(sv, val) (SvMAGIC(sv) = (val)) #endif