diff options
author | Jan Dubois <jand@activestate.com> | 2008-02-01 05:40:41 -0800 |
---|---|---|
committer | Steve Peters <steve@fisharerojo.org> | 2008-02-12 14:58:50 +0000 |
commit | 654eccd594bfe8deab367b0f4cdda726a7796ff3 (patch) | |
tree | f063ed3713d5cb4ef88ad77b357d58492635b436 /regexp.h | |
parent | 7918f24d20384771923d344a382e1d16d9552018 (diff) | |
download | perl-654eccd594bfe8deab367b0f4cdda726a7796ff3.tar.gz |
Fix bit-fields for VC [was RE: [perl #50386] GIMME_V broken with 5.10.0/GCC and XS?]
From: "Jan Dubois" <jand@activestate.com>
Message-ID: <02ee01c8651b$17ef72f0$47ce58d0$@com>
p4raw-id: //depot/perl@33292
Diffstat (limited to 'regexp.h')
-rw-r--r-- | regexp.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -97,9 +97,9 @@ typedef struct regexp_paren_pair { I32 sublen; /* Length of string pointed by subbeg */ \ /* Information about the match that isn't often used */ \ /* offset from wrapped to the start of precomp */ \ - unsigned pre_prefix:4; \ + PERL_BITFIELD32 pre_prefix:4; \ /* number of eval groups in the pattern - for security checks */\ - unsigned seen_evals:28 + PERL_BITFIELD32 seen_evals:28 typedef struct regexp { _XPV_HEAD; |