diff options
Diffstat (limited to 'lib/system/hti.nim')
-rwxr-xr-x | lib/system/hti.nim | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/system/hti.nim b/lib/system/hti.nim index 3343000ae..d22109061 100755 --- a/lib/system/hti.nim +++ b/lib/system/hti.nim @@ -45,7 +45,9 @@ type # This should be he same as ast.TTypeKind TNimTypeFlag = enum ntfNoRefs = 0, # type contains no tyRef, tySequence, tyString - ntfAcyclic = 1 # type cannot form a cycle + ntfAcyclic = 1, # type cannot form a cycle + ntfEnumHole = 2 # enum has holes and thus `$` for them needs the slow + # version TNimType {.compilerproc, final.} = object size: int kind: TNimKind |