diff options
Diffstat (limited to 'lib/system/hti.nim')
-rw-r--r-- | lib/system/hti.nim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/system/hti.nim b/lib/system/hti.nim index 64174e60f..5689f92b3 100644 --- a/lib/system/hti.nim +++ b/lib/system/hti.nim @@ -86,6 +86,7 @@ type node: ptr TNimNode # valid for tyRecord, tyObject, tyTuple, tyEnum finalizer: pointer # the finalizer for the type marker: proc (p: pointer, op: int) {.nimcall, gcsafe.} # marker proc for GC + deepcopy: proc (p: pointer): pointer {.nimcall, gcsafe.} PNimType = ptr TNimType # node.len may be the ``first`` element of a set |