From: Vincent Pit Date: Fri, 31 Dec 2010 15:42:28 +0000 (+0100) Subject: Get rid of ENTERn/LEAVEn X-Git-Tag: v0.07~3 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Fautovivification.git;a=commitdiff_plain;h=45651498cc83f108b5b206393960fe0f72de5e37 Get rid of ENTERn/LEAVEn They are no longer needed since daea523653756bb45d89c7b17bbc6ac70f37019d. --- diff --git a/autovivification.xs b/autovivification.xs index 8f43dec..f52d408 100644 --- a/autovivification.xs +++ b/autovivification.xs @@ -21,20 +21,6 @@ #define A_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) && !A_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) && !A_HAS_PERL(5, 11, 4) -# define LEAVEn(N) LEAVE_with_name(N) -#else -# define LEAVEn(N) LEAVE -#endif - #ifndef A_WORKAROUND_REQUIRE_PROPAGATION # define A_WORKAROUND_REQUIRE_PROPAGATION !A_HAS_PERL(5, 10, 1) #endif