summaryrefslogtreecommitdiff
path: root/regexp.h
diff options
context:
space:
mode:
authorSteve Hay <SteveHay@planit.com>2008-01-09 17:59:11 +0000
committerSteve Hay <SteveHay@planit.com>2008-01-09 17:59:11 +0000
commit0a0b43fa5b4c00dcd9c6c26dea968d2368fc6eae (patch)
tree441d57b79569492cdc06eccc39322a1c8f3abc9b /regexp.h
parentd6106309316e968d31ba656a7033bd0d45f70b22 (diff)
downloadperl-0a0b43fa5b4c00dcd9c6c26dea968d2368fc6eae.tar.gz
Fix prototype in regexp code following #32851, and regen
p4raw-id: //depot/perl@32925
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 b41c0a41e1..74973aeb5f 100644
--- a/regexp.h
+++ b/regexp.h
@@ -129,7 +129,7 @@ typedef struct re_scream_pos_data_s
* Any regex engine implementation must be able to build one of these.
*/
typedef struct regexp_engine {
- REGEXP* (*comp) (pTHX_ const SV * const pattern, const U32 flags);
+ REGEXP* (*comp) (pTHX_ const SV * const pattern, U32 flags);
I32 (*exec) (pTHX_ REGEXP * const rx, char* stringarg, char* strend,
char* strbeg, I32 minend, SV* screamer,
void* data, U32 flags);