diff options
author | Jan Dubois <jand@activestate.com> | 1999-01-24 02:12:00 +0100 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-02-12 13:25:59 +0000 |
commit | 9e7bc3e8c0a5a5a357a2bda9981a86c5a61092c1 (patch) | |
tree | dc6c1d0c460cd55c7d2b7b74378919964cf50799 /XSUB.h | |
parent | 01e22528c2c3f941ba946b303423dfa59ea39444 (diff) | |
download | perl-9e7bc3e8c0a5a5a357a2bda9981a86c5a61092c1.tar.gz |
remove OVERLOAD conditionals
Message-ID: <36b66479.62756298@smtp1.ibm.net>
p4raw-id: //depot/perl@2903
Diffstat (limited to 'XSUB.h')
-rw-r--r-- | XSUB.h | 12 |
1 files changed, 4 insertions, 8 deletions
@@ -108,10 +108,8 @@ # ifdef USE_LOCALE_COLLATE # define VTBL_collxfrm get_vtbl(want_vtbl_collxfrm) # endif -# ifdef OVERLOAD -# define VTBL_amagic get_vtbl(want_vtbl_amagic) -# define VTBL_amagicelem get_vtbl(want_vtbl_amagicelem) -# endif +# define VTBL_amagic get_vtbl(want_vtbl_amagic) +# define VTBL_amagicelem get_vtbl(want_vtbl_amagicelem) #else # define VTBL_sv &PL_vtbl_sv # define VTBL_env &PL_vtbl_env @@ -141,10 +139,8 @@ # ifdef USE_LOCALE_COLLATE # define VTBL_collxfrm &PL_vtbl_collxfrm # endif -# ifdef OVERLOAD -# define VTBL_amagic &PL_vtbl_amagic -# define VTBL_amagicelem &PL_vtbl_amagicelem -# endif +# define VTBL_amagic &PL_vtbl_amagic +# define VTBL_amagicelem &PL_vtbl_amagicelem #endif #ifdef PERL_OBJECT |