From: Vincent Pit Date: Thu, 6 Jan 2011 01:13:43 +0000 (+0100) Subject: Get rid of ENTERn/LEAVEn X-Git-Tag: v0.09~15 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Fre-engine-Plugin.git;a=commitdiff_plain;h=5496a5f466ffb76891996678f464fb48428a28c3 Get rid of ENTERn/LEAVEn They are no longer needed since 4327f8c53cab465ee6892481b01717664fb6c973. --- diff --git a/Plugin.xs b/Plugin.xs index 7c01ad5..07a5d25 100644 --- a/Plugin.xs +++ b/Plugin.xs @@ -13,20 +13,6 @@ #define REP_HAS_PERL(R, V, S) (PERL_REVISION > (R) || (PERL_REVISION == (R) && (PERL_VERSION > (V) || (PERL_VERSION == (V) && (PERL_SUBVERSION >= (S)))))) -#undef ENTERn -#if defined(ENTER_with_name) && !REP_HAS_PERL(5, 11, 4) -# define ENTERn(N) ENTER_with_name(N) -#else -# define ENTERn(N) ENTER -#endif - -#undef LEAVEn -#if defined(LEAVE_with_name) && !REP_HAS_PERL(5, 11, 4) -# define LEAVEn(N) LEAVE_with_name(N) -#else -# define LEAVEn(N) LEAVE -#endif - #ifndef REP_WORKAROUND_REQUIRE_PROPAGATION # define REP_WORKAROUND_REQUIRE_PROPAGATION !REP_HAS_PERL(5, 10, 1) #endif