summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--lib/system/hti.nim8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/system/hti.nim b/lib/system/hti.nim
index 446468b8d..b2e90211d 100644
--- a/lib/system/hti.nim
+++ b/lib/system/hti.nim
@@ -89,14 +89,14 @@ type
   TNimType {.compilerproc.} = object
     when defined(gcDestructors):
       head*: pointer
-    size: int
+    size*: int
     kind: TNimKind
     flags: set[TNimTypeFlag]
-    base: ptr TNimType
+    base*: ptr TNimType
     node: ptr TNimNode # valid for tyRecord, tyObject, tyTuple, tyEnum
     finalizer*: pointer # the finalizer for the type
-    marker*: proc (p: pointer, op: int) {.nimcall, benign.} # marker proc for GC
-    deepcopy: proc (p: pointer): pointer {.nimcall, benign.}
+    marker*: proc (p: pointer, op: int) {.nimcall, benign, tags: [], raises: [].} # marker proc for GC
+    deepcopy: proc (p: pointer): pointer {.nimcall, benign, tags: [], raises: [].}
     when defined(nimTypeNames):
       name: cstring
       nextType: ptr TNimType