diff options
author | Father Chrysostomos <sprout@cpan.org> | 2014-09-23 13:09:13 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2014-09-23 13:09:25 -0700 |
commit | e12ab2f2a32d9970fea4d6bf5aecbd41e0aabe5d (patch) | |
tree | cee56f134b53f21f0eab30cf3a91c9d12226345b /gv.h | |
parent | fb8cdbc589a654463781b72221a941a4b3deac4b (diff) | |
download | perl-e12ab2f2a32d9970fea4d6bf5aecbd41e0aabe5d.tar.gz |
gv.h: Use PERL_BITFIELD32 for the bitfield
See <https://rt.perl.org/Ticket/Display.html?id=15667#txn-1310207>.
Diffstat (limited to 'gv.h')
-rw-r--r-- | gv.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -18,8 +18,8 @@ struct gp { AV * gp_av; /* array value */ CV * gp_form; /* format value */ GV * gp_egv; /* effective gv, if *glob */ - U32 gp_line:31; /* line first declared at (for -w) */ - U32 gp_flags:1; + PERL_BITFIELD32 gp_line:31; /* line first declared at (for -w) */ + PERL_BITFIELD32 gp_flags:1; HEK * gp_file_hek; /* file first declared in (for -w) */ }; |