From 1d210779fca4e1f38a05cc35fab98b7584f54f27 Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Thu, 23 Jul 2020 09:24:06 -0600 Subject: Remove PERLIO_FUNCS_CONST As the comment said, this was temporary until vtables got to be all const --- perlio.h | 7 ------- 1 file changed, 7 deletions(-) (limited to 'perlio.h') diff --git a/perlio.h b/perlio.h index ee16ab8774..836ff6f72f 100644 --- a/perlio.h +++ b/perlio.h @@ -63,15 +63,8 @@ typedef PerlIOl *PerlIO; #define PerlIO PerlIO #define PERLIO_LAYERS 1 -/* PERLIO_FUNCS_CONST is now on by default for efficiency, PERLIO_FUNCS_CONST - can be removed 1 day once stable & then PerlIO vtables are permanently RO */ -#ifdef PERLIO_FUNCS_CONST #define PERLIO_FUNCS_DECL(funcs) const PerlIO_funcs funcs #define PERLIO_FUNCS_CAST(funcs) (PerlIO_funcs*)(funcs) -#else -#define PERLIO_FUNCS_DECL(funcs) PerlIO_funcs funcs -#define PERLIO_FUNCS_CAST(funcs) (funcs) -#endif PERL_CALLCONV void PerlIO_define_layer(pTHX_ PerlIO_funcs *tab); PERL_CALLCONV PerlIO_funcs *PerlIO_find_layer(pTHX_ const char *name, -- cgit v1.2.1