diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2008-08-23 11:16:44 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2008-08-23 11:16:44 +0200 |
commit | 07d5a8085bbcc21a1d9d06a2976ecc00e9c8d55b (patch) | |
tree | b07a53afeb56f4bba917c1a3a843f48dd25b62be /lib/base/pcre.nim | |
parent | 916c25f9a70b68eb7a5e2c45d7cc2e10c6e3a525 (diff) | |
download | Nim-07d5a8085bbcc21a1d9d06a2976ecc00e9c8d55b.tar.gz |
too many changes to list
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 |