summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2010-11-20 11:20:07 -0800
committerFather Chrysostomos <sprout@cpan.org>2010-11-20 18:15:14 -0800
commitafdbe55d0c4f11409419f813c4360c8ab300a779 (patch)
treed4fb56dd294696874058ba8d0ff994b987be270c /proto.h
parent745edda6f1b4ede54e0225b4d1528e96dc0217a0 (diff)
downloadperl-afdbe55d0c4f11409419f813c4360c8ab300a779.tar.gz
Eliminate the newname param from mro_package_moved
Nothing is using this any more, as of the previous commit.
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/proto.h b/proto.h
index 2dd44c3edd..a24a9cbb68 100644
--- a/proto.h
+++ b/proto.h
@@ -2285,7 +2285,11 @@ PERL_CALLCONV void Perl_mro_method_changed_in(pTHX_ HV* stash)
#define PERL_ARGS_ASSERT_MRO_METHOD_CHANGED_IN \
assert(stash)
-PERL_CALLCONV void Perl_mro_package_moved(pTHX_ HV * const stash, HV * const oldstash, const GV *gv, const char *newname, I32 newname_len);
+PERL_CALLCONV void Perl_mro_package_moved(pTHX_ HV * const stash, HV * const oldstash, const GV * const gv, U32 flags)
+ __attribute__nonnull__(pTHX_3);
+#define PERL_ARGS_ASSERT_MRO_PACKAGE_MOVED \
+ assert(gv)
+
PERL_CALLCONV void Perl_mro_register(pTHX_ const struct mro_alg *mro)
__attribute__nonnull__(pTHX_1);
#define PERL_ARGS_ASSERT_MRO_REGISTER \