diff options
author | Nicholas Clark <nick@ccl4.org> | 2008-12-26 21:31:47 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2008-12-27 21:12:12 +0000 |
commit | c60bad7b8870cf2745c93e1b99cbb504daa780b2 (patch) | |
tree | a73fc553dec37089d4236320a3cad6babd9aa346 /hv.h | |
parent | a3e6e81e81213c31f0612471c427044481a95287 (diff) | |
download | perl-c60bad7b8870cf2745c93e1b99cbb504daa780b2.tar.gz |
Explictly export Perl_mro_meta_init() so that HvMROMETA() can become part of the
public API and be used outside the core. However, leave Perl_mro_meta_init() as
a private implementation detail.
Diffstat (limited to 'hv.h')
-rw-r--r-- | hv.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -261,7 +261,7 @@ C<SV*>. caller's responsibility */ #define HvMROMETA(hv) (HvAUX(hv)->xhv_mro_meta \ ? HvAUX(hv)->xhv_mro_meta \ - : mro_meta_init(hv)) + : Perl_mro_meta_init(aTHX_ hv)) /* FIXME - all of these should use a UTF8 aware API, which should also involve getting the length. */ |