summaryrefslogtreecommitdiff
path: root/hv.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2008-12-27 11:19:37 +0000
committerNicholas Clark <nick@ccl4.org>2008-12-27 21:12:13 +0000
commit9953ff723fac897df4afc6a69aaa7bfe5e8dc983 (patch)
tree5ca246e6ce7f4058a101b5e0c6df1240683caeca /hv.h
parent3a6fa573ae4863261f94be7a4dad29a13b1652be (diff)
downloadperl-9953ff723fac897df4afc6a69aaa7bfe5e8dc983.tar.gz
In struct mro_meta, rename mro_linear_dfs to mro_linear_all, and change it from
AV * to HV *.
Diffstat (limited to 'hv.h')
-rw-r--r--hv.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/hv.h b/hv.h
index 29977f17be..226532661d 100644
--- a/hv.h
+++ b/hv.h
@@ -50,8 +50,8 @@ struct mro_alg {
};
struct mro_meta {
- /* repurposed as a hash holding the different MROs private data. */
- AV *mro_linear_dfs; /* cached dfs @ISA linearization */
+ /* a hash holding the different MROs private data. */
+ HV *mro_linear_all;
/* a pointer directly to the current MROs private data. If mro_linear_all
is NULL, this owns the SV reference, else it is just a pointer to a
value stored in and owned by mro_linear_all. */