diff options
author | Father Chrysostomos <sprout@cpan.org> | 2010-11-11 20:39:31 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2010-11-11 20:39:31 -0800 |
commit | 4df35a07ff9fe98fb378b84929dddace96bcb9fb (patch) | |
tree | ec135193be5043f6d128fa191677320e8f8f7389 /proto.h | |
parent | b89cdb229b520dceadf180df9462c8a0a1edf975 (diff) | |
download | perl-4df35a07ff9fe98fb378b84929dddace96bcb9fb.tar.gz |
mro_isa_changed_in3 is no longer necessary
as of 80ebaca.
It was nice while it lasted.
This reverts 6f86b615fa.
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -2257,10 +2257,11 @@ PERL_CALLCONV SV* Perl_mro_get_private_data(pTHX_ struct mro_meta *const smeta, #define PERL_ARGS_ASSERT_MRO_GET_PRIVATE_DATA \ assert(smeta); assert(which) -/* PERL_CALLCONV void mro_isa_changed_in(pTHX_ HV* stash) - __attribute__nonnull__(pTHX_1); */ +PERL_CALLCONV void Perl_mro_isa_changed_in(pTHX_ HV* stash) + __attribute__nonnull__(pTHX_1); +#define PERL_ARGS_ASSERT_MRO_ISA_CHANGED_IN \ + assert(stash) -PERL_CALLCONV void Perl_mro_isa_changed_in3(pTHX_ HV* stash, const char *stashname, STRLEN stashname_len); PERL_CALLCONV struct mro_meta* Perl_mro_meta_init(pTHX_ HV* stash) __attribute__nonnull__(pTHX_1); #define PERL_ARGS_ASSERT_MRO_META_INIT \ |