From: Vincent Pit Date: Sat, 20 Sep 2008 21:09:52 +0000 (+0200) Subject: Remove refcount debugging macro X-Git-Tag: v0.20~11 X-Git-Url: http://git.vpit.fr/?a=commitdiff_plain;h=4e5104c1b58e7247db0fed63387b6fb245221a24;p=perl%2Fmodules%2FVariable-Magic.git Remove refcount debugging macro --- diff --git a/Magic.xs b/Magic.xs index 00384fe..30577d4 100644 --- a/Magic.xs +++ b/Magic.xs @@ -12,8 +12,6 @@ #define __PACKAGE__ "Variable::Magic" -#define R(S) fprintf(stderr, "R(" #S ") = %d\n", SvREFCNT(S)) - #define PERL_VERSION_GE(R, V, S) (PERL_REVISION > (R) || (PERL_REVISION == (R) && (PERL_VERSION > (V) || (PERL_VERSION == (V) && (PERL_SUBVERSION >= (S)))))) #define PERL_VERSION_LE(R, V, S) (PERL_REVISION < (R) || (PERL_REVISION == (R) && (PERL_VERSION < (V) || (PERL_VERSION == (V) && (PERL_SUBVERSION <= (S))))))