summaryrefslogtreecommitdiff
path: root/regexp.h
diff options
context:
space:
mode:
authorYves Orton <demerphq@gmail.com>2022-09-01 13:40:01 +0200
committerYves Orton <demerphq@gmail.com>2022-09-07 09:02:11 +0200
commit6459affc2e21855dccef6129519977ea92c255b5 (patch)
tree4c9f254a342fd512ad3d62068b67eaf9cccad87b /regexp.h
parentc5cd648d0fdd05cdd95dcafdec021ebde3bdffe9 (diff)
downloadperl-6459affc2e21855dccef6129519977ea92c255b5.tar.gz
regexp.h - move semicolon to be before the comment.
This is the only struct in our manually maintained files where there is a comment in front of the semicolon instead of after it.
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 230488f03d..b940d52d25 100644
--- a/regexp.h
+++ b/regexp.h
@@ -46,7 +46,7 @@ struct regexp;
struct reg_substr_datum {
SSize_t min_offset; /* min pos (in chars) that substr must appear */
- SSize_t max_offset /* max pos (in chars) that substr must appear */;
+ SSize_t max_offset; /* max pos (in chars) that substr must appear */
SV *substr; /* non-utf8 variant */
SV *utf8_substr; /* utf8 variant */
SSize_t end_shift; /* how many fixed chars must end the string */