diff options
author | David Mitchell <davem@iabyn.com> | 2012-02-17 13:22:17 +0000 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2012-06-13 13:32:48 +0100 |
commit | b82ad30cd33e8e4c900e4e7d3419977fff586492 (patch) | |
tree | 4cf749ef1777b14f4907a8e026e7f04c5f5d0db9 /regexp.h | |
parent | fbf5ab7b5c4e456459cd9fe59d022d6dbf9fe991 (diff) | |
download | perl-b82ad30cd33e8e4c900e4e7d3419977fff586492.tar.gz |
make _REGEXP_COMMON work under win32
There's an extra trailing semicolon which the win32 compiler doesn't like.
Diffstat (limited to 'regexp.h')
-rw-r--r-- | regexp.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -120,7 +120,7 @@ struct reg_code_block { PERL_BITFIELD32 pre_prefix:4; \ /* number of eval groups in the pattern - for security checks */\ PERL_BITFIELD32 seen_evals:28; \ - CV *qr_anoncv; /* the anon sub wrapped round qr/(?{..})/ */ \ + CV *qr_anoncv /* the anon sub wrapped round qr/(?{..})/ */ typedef struct regexp { _XPV_HEAD; |