summaryrefslogtreecommitdiff
path: root/gv.h
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2014-09-23 13:09:13 -0700
committerFather Chrysostomos <sprout@cpan.org>2014-09-23 13:09:25 -0700
commite12ab2f2a32d9970fea4d6bf5aecbd41e0aabe5d (patch)
treecee56f134b53f21f0eab30cf3a91c9d12226345b /gv.h
parentfb8cdbc589a654463781b72221a941a4b3deac4b (diff)
downloadperl-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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gv.h b/gv.h
index cf096c3f87..1d5915433d 100644
--- a/gv.h
+++ b/gv.h
@@ -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) */
};