From 6459affc2e21855dccef6129519977ea92c255b5 Mon Sep 17 00:00:00 2001 From: Yves Orton Date: Thu, 1 Sep 2022 13:40:01 +0200 Subject: 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. --- regexp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'regexp.h') 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 */ -- cgit v1.2.1