In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/e12ab2f2a32d9970fea4d6bf5aecbd41e0aabe5d?hp=fb8cdbc589a654463781b72221a941a4b3deac4b>

- Log -----------------------------------------------------------------
commit e12ab2f2a32d9970fea4d6bf5aecbd41e0aabe5d
Author: Father Chrysostomos <[email protected]>
Date:   Tue Sep 23 13:09:13 2014 -0700

    gv.h: Use PERL_BITFIELD32 for the bitfield
    
    See <https://rt.perl.org/Ticket/Display.html?id=15667#txn-1310207>.
-----------------------------------------------------------------------

Summary of changes:
 gv.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gv.h b/gv.h
index cf096c3..1d59154 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) */
 };
 

--
Perl5 Master Repository

Reply via email to