This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fb8cdbc
)
gv.h: Use PERL_BITFIELD32 for the bitfield
author
Father Chrysostomos
<sprout@cpan.org>
Tue, 23 Sep 2014 20:09:13 +0000
(13:09 -0700)
committer
Father Chrysostomos
<sprout@cpan.org>
Tue, 23 Sep 2014 20:09:25 +0000
(13:09 -0700)
See <https://rt.perl.org/Ticket/Display.html?id=15667#txn-1310207>.
gv.h
patch
|
blob
|
blame
|
history
diff --git
a/gv.h
b/gv.h
index
cf096c3
..
1d59154
100644
(file)
--- 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) */
};