summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2010-11-11 20:39:31 -0800
committerFather Chrysostomos <sprout@cpan.org>2010-11-11 20:39:31 -0800
commit4df35a07ff9fe98fb378b84929dddace96bcb9fb (patch)
treeec135193be5043f6d128fa191677320e8f8f7389 /proto.h
parentb89cdb229b520dceadf180df9462c8a0a1edf975 (diff)
downloadperl-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.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/proto.h b/proto.h
index 4002d67414..3bae4fe52b 100644
--- a/proto.h
+++ b/proto.h
@@ -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 \