diff options
Diffstat (limited to 'lib/base/pcre.nim')
-rw-r--r-- | lib/base/pcre.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/base/pcre.nim b/lib/base/pcre.nim index 6a9f14123..1023f86f3 100644 --- a/lib/base/pcre.nim +++ b/lib/base/pcre.nim @@ -162,7 +162,7 @@ type # Data passed back in callouts # Const before type ignored # Pointer to character tables - Tpcre_extra* = record + Tpcre_extra* {.final.} = object flags: cuint study_data: pointer match_limit: cuint @@ -189,7 +189,7 @@ type # Offset to next item in the pattern # Length of next item in the pattern # ------------------------------------------------------------------ - TPcre_callout_block* = record + TPcre_callout_block* {.final.} = object version: cint callout_number: cint offset_vector: ptr cint |