]> git.vpit.fr Git - perl/modules/autovivification.git/commitdiff
Get rid of ENTERn/LEAVEn
authorVincent Pit <vince@profvince.com>
Fri, 31 Dec 2010 15:42:28 +0000 (16:42 +0100)
committerVincent Pit <vince@profvince.com>
Fri, 31 Dec 2010 15:42:28 +0000 (16:42 +0100)
They are no longer needed since daea523653756bb45d89c7b17bbc6ac70f37019d.

autovivification.xs

index 8f43decec3646f40ecd877783ec79641278b8096..f52d4084762cde520561ee406299b65fc501e036 100644 (file)
 
 #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