diff options
author | Nicholas Clark <nick@ccl4.org> | 2010-11-24 11:36:36 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2010-11-24 11:36:36 +0000 |
commit | 15d9236d3878cc5033b0e89e4a2fc65f07146ea5 (patch) | |
tree | a4c482005bc6578c19cf64e74da08c1346ac3c5a /dump.c | |
parent | 68adb2b0c592afeb71b5a6a4f15af308d54a0db4 (diff) | |
download | perl-15d9236d3878cc5033b0e89e4a2fc65f07146ea5.tar.gz |
Convert xhv_name in struct xpvhv_aux to be a union of HEK* and HEK**
This avoids a lot of casting. Nothing outside the perl core code is accessing
that member directly.
Diffstat (limited to 'dump.c')
-rw-r--r-- | dump.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1862,10 +1862,10 @@ Perl_do_sv_dump(pTHX_ I32 level, PerlIO *file, SV *sv, I32 nest, I32 maxnest, bo level, file, " NAMECOUNT = %"IVdf"\n", (IV)HvAUX(sv)->xhv_name_count ); - if (HvAUX(sv)->xhv_name && HvENAME_HEK_NN(sv)) { + if (HvAUX(sv)->xhv_name_u.xhvnameu_name && HvENAME_HEK_NN(sv)) { if (HvAUX(sv)->xhv_name_count) { SV * const names = sv_newmortal(); - HEK ** const namep = (HEK **)HvAUX(sv)->xhv_name; + HEK ** const namep = HvAUX(sv)->xhv_name_u.xhvnameu_names; const I32 count = HvAUX(sv)->xhv_name_count; /* This line sets hekp to one element before the first name, so the ++hekp below will put us at the start- |