summaryrefslogtreecommitdiff
path: root/hv.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2008-12-26 21:31:47 +0000
committerNicholas Clark <nick@ccl4.org>2008-12-27 21:12:12 +0000
commitc60bad7b8870cf2745c93e1b99cbb504daa780b2 (patch)
treea73fc553dec37089d4236320a3cad6babd9aa346 /hv.h
parenta3e6e81e81213c31f0612471c427044481a95287 (diff)
downloadperl-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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/hv.h b/hv.h
index 1481d5b8e9..e120dd4274 100644
--- a/hv.h
+++ b/hv.h
@@ -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. */