diff options
author | Araq <rumpf_a@web.de> | 2012-07-08 21:03:47 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2012-07-08 21:03:47 +0200 |
commit | 4fbba0a65ad310ba9498f1cf9f79eb0826b19f81 (patch) | |
tree | dece3596fbdf153263f5672b4011139f70a4df6a /lib/core | |
parent | 36247e0947699a56d5bc51d48188b6dda1815587 (diff) | |
download | Nim-4fbba0a65ad310ba9498f1cf9f79eb0826b19f81.tar.gz |
changed integer promotion rules; breaks bootstrapping and lots of code
Diffstat (limited to 'lib/core')
-rwxr-xr-x | lib/core/typeinfo.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/core/typeinfo.nim b/lib/core/typeinfo.nim index 549e4724a..9030b7b53 100755 --- a/lib/core/typeinfo.nim +++ b/lib/core/typeinfo.nim @@ -59,7 +59,7 @@ type rawType: PNimType ppointer = ptr pointer - pbyteArray = ptr array[0.. 0xffff, byte] + pbyteArray = ptr array[0.. 0xffff, int8] TGenSeq {.pure.} = object len, space: int |