summary refs log tree commit diff stats
path: root/lib/wrappers
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2019-03-19 12:48:46 +0100
committerAndreas Rumpf <rumpf_a@web.de>2019-03-19 12:48:54 +0100
commitcd9caf09d1878141871d46a5110648b119b7cb31 (patch)
tree6535c7cc53afc4dbe18026574076c63972d423c2 /lib/wrappers
parentd3df1b8edaf22101bc7205cb8bb0a661ee3278a2 (diff)
downloadNim-cd9caf09d1878141871d46a5110648b119b7cb31.tar.gz
pcre.nim: added pcre_free and removed hacks in nre and re.nim
Diffstat (limited to 'lib/wrappers')
-rw-r--r--lib/wrappers/pcre.nim2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/wrappers/pcre.nim b/lib/wrappers/pcre.nim
index c4bb24cfd..b7975abb8 100644
--- a/lib/wrappers/pcre.nim
+++ b/lib/wrappers/pcre.nim
@@ -341,6 +341,8 @@ proc compile2*(pattern: cstring,
                erroffset: ptr cint,
                tableptr: pointer): ptr Pcre
 
+proc free*(p: ptr Pcre)
+
 proc config*(what: cint,
              where: pointer): cint