Skip to content

Commit ca0726b

Browse files
committed
Rm obsolete apidoc mro_get_linear_isa_c3()
This function was public API only in perl-5.10. The corresponding line in the code generating API documentation should have been removed when the function ceased to be public API.
1 parent e801679 commit ca0726b

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

ext/mro/mro.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ use warnings;
1212

1313
# mro.pm versions < 1.00 reserved for MRO::Compat
1414
# for partial back-compat to 5.[68].x
15-
our $VERSION = '1.29';
15+
our $VERSION = '1.30';
1616

1717
require XSLoader;
1818
XSLoader::load('mro');

ext/mro/mro.xs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ static const struct mro_alg c3_alg =
1111
{S_mro_get_linear_isa_c3, "c3", 2, 0, 0};
1212

1313
/*
14-
=for apidoc mro_get_linear_isa_c3
1514
1615
Returns the C3 linearization of C<@ISA>
1716
the given stash. The return value is a read-only AV*
@@ -25,7 +24,6 @@ semi-permanently (otherwise it might be deleted
2524
out from under you the next time the cache is
2625
invalidated).
2726
28-
=cut
2927
*/
3028

3129
static AV*

0 commit comments

Comments
 (0)