diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-05-26 16:07:20 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-05-26 16:07:20 +0000 |
commit | 339049b035d3e07ff8c7f574dac68f06816b9af2 (patch) | |
tree | e9a629e87321d08b52b8b6e9a05e24c33805ce30 /hv.h | |
parent | 42a116590b56a49035a440a6b0f3a679f91e9375 (diff) | |
download | perl-339049b035d3e07ff8c7f574dac68f06816b9af2.tar.gz |
Rename the members of the SV head union to avoid pre-processor
arguments with embed.h
p4raw-id: //depot/perl@24590
Diffstat (limited to 'hv.h')
-rw-r--r-- | hv.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -213,7 +213,7 @@ C<SV*>. #define Nullhv Null(HV*) -#define HvARRAY(hv) (*(HE***)&((hv)->sv_u.sv_array)) +#define HvARRAY(hv) (*(HE***)&((hv)->sv_u.svu_array)) #define HvFILL(hv) ((XPVHV*) SvANY(hv))->xhv_fill #define HvMAX(hv) ((XPVHV*) SvANY(hv))->xhv_max #define HvRITER(hv) (*Perl_hv_riter_p(aTHX_ (HV*)(hv))) |