summaryrefslogtreecommitdiff
path: root/regexp.h
diff options
context:
space:
mode:
authorDavid Mitchell <davem@iabyn.com>2012-02-17 13:22:17 +0000
committerDavid Mitchell <davem@iabyn.com>2012-06-13 13:32:48 +0100
commitb82ad30cd33e8e4c900e4e7d3419977fff586492 (patch)
tree4cf749ef1777b14f4907a8e026e7f04c5f5d0db9 /regexp.h
parentfbf5ab7b5c4e456459cd9fe59d022d6dbf9fe991 (diff)
downloadperl-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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/regexp.h b/regexp.h
index b4427d3f6e..c79b281b99 100644
--- a/regexp.h
+++ b/regexp.h
@@ -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;