Branch: refs/heads/smoke-me/fix_bitfield_definitions
Home: https://github.com/Perl/perl5
Commit: f8e72076393d9d7449840dbf7eb1feb3f9616113
https://github.com/Perl/perl5/commit/f8e72076393d9d7449840dbf7eb1feb3f9616113
Author: Yves Orton <[email protected]>
Date: 2020-02-08 (Sat, 08 Feb 2020)
Changed paths:
M perl.h
M win32/win32.h
Log Message:
-----------
fix defines for PERL_BITFIELDxx on Linux and Win32
for some reason PERL_BITFIELD32 is defined as "unsigned" which is
defined to be the same as "unsigned int" which could be 16 bits.
This changes the definition for PERL_BITFIELDxx to be the same
on both platforms and to use the full names for the type, and to
use a type which is guaranteed to be at least 32 bits long for
PERL_BITFIELD32.