diff options
author | Nicholas Clark <nick@ccl4.org> | 2008-12-27 11:19:37 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2008-12-27 21:12:13 +0000 |
commit | 9953ff723fac897df4afc6a69aaa7bfe5e8dc983 (patch) | |
tree | 5ca246e6ce7f4058a101b5e0c6df1240683caeca /hv.h | |
parent | 3a6fa573ae4863261f94be7a4dad29a13b1652be (diff) | |
download | perl-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.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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. */ |