diff options
author | Steve Hay <SteveHay@planit.com> | 2007-02-21 08:40:18 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2007-02-21 08:40:18 +0000 |
commit | def5107868d99ec0d4007de47d727325b581a446 (patch) | |
tree | 8405187971624b80b2ae8fbd37929a7de5f2e300 /regcomp.c | |
parent | 5078fe9db36939fd129d04f339bd821e548f20f2 (diff) | |
download | perl-def5107868d99ec0d4007de47d727325b581a446.tar.gz |
Fix Win32 compilation error following #30372
p4raw-id: //depot/perl@30374
Diffstat (limited to 'regcomp.c')
-rw-r--r-- | regcomp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -8001,8 +8001,8 @@ S_reginsert(pTHX_ RExC_state_t *pRExC_state, U8 op, regnode *opnd, U32 depth) register regnode *place; const int offset = regarglen[(U8)op]; const int size = NODE_STEP_REGNODE + offset; - PERL_UNUSED_ARG(depth); GET_RE_DEBUG_FLAGS_DECL; + PERL_UNUSED_ARG(depth); /* (PL_regkind[(U8)op] == CURLY ? EXTRA_STEP_2ARGS : 0); */ DEBUG_PARSE_FMT("inst"," - %s",reg_name[op]); if (SIZE_ONLY) { |