diff options
author | Jeff Ciesielski <jeffciesielski@gmail.com> | 2017-01-26 01:05:03 -0500 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2017-01-26 07:05:03 +0100 |
commit | 7f30d04d6a79821fe00a3add09878f73b83f78e4 (patch) | |
tree | 3eaa6482c0c5e5ee22f73eb4bb9cd940b0195bc2 /lib/system/hti.nim | |
parent | 536015ee7b2ad11df17c5eafa80ba0fce3c80bfd (diff) | |
download | Nim-7f30d04d6a79821fe00a3add09878f73b83f78e4.tar.gz |
Fix compilation for 16 bit targets (#5286)
Diffstat (limited to 'lib/system/hti.nim')
-rw-r--r-- | lib/system/hti.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system/hti.nim b/lib/system/hti.nim index 6ac976cb4..69f4f9508 100644 --- a/lib/system/hti.nim +++ b/lib/system/hti.nim @@ -70,7 +70,7 @@ type typ: ptr TNimType name: cstring len: int - sons: ptr array[0..0x7fff, ptr TNimNode] + sons: ptr array[0x7fff, ptr TNimNode] TNimTypeFlag = enum ntfNoRefs = 0, # type contains no tyRef, tySequence, tyString |