mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-23 07:45:23 +00:00
Fix compilation for 16 bit targets (#5286)
This commit is contained in:
committed by
Andreas Rumpf
parent
536015ee7b
commit
7f30d04d6a
@@ -67,7 +67,7 @@ type
|
||||
rawTypePtr: pointer
|
||||
|
||||
ppointer = ptr pointer
|
||||
pbyteArray = ptr array[0.. 0xffff, int8]
|
||||
pbyteArray = ptr array[0xffff, int8]
|
||||
|
||||
TGenericSeq {.importc.} = object
|
||||
len, space: int
|
||||
|
||||
Reference in New Issue
Block a user