diff options
author | Zahary Karadjov <zahary@gmail.com> | 2012-06-14 17:33:00 +0300 |
---|---|---|
committer | Zahary Karadjov <zahary@gmail.com> | 2012-06-14 17:33:00 +0300 |
commit | b11fe5d0b477c58524ed3fc02ede6f13acef9622 (patch) | |
tree | 04c53a9dc422f6037e6bdb0472fafeda4c103a61 /lib/system | |
parent | 308cfc49b8e2d429c2f15fe13645cf2413d67582 (diff) | |
download | Nim-b11fe5d0b477c58524ed3fc02ede6f13acef9622.tar.gz |
more uint related fixes
Diffstat (limited to 'lib/system')
-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 1d62b910a..d79679107 100755 --- a/lib/system/hti.nim +++ b/lib/system/hti.nim @@ -37,7 +37,9 @@ type # This should be he same as ast.TTypeKind tyPointer, tyOpenArray, tyString, tyCString, tyForward, tyInt, tyInt8, tyInt16, tyInt32, tyInt64, - tyFloat, tyFloat32, tyFloat64, tyFloat128 + tyFloat, tyFloat32, tyFloat64, tyFloat128, + tyUInt, tyUInt8, tyUInt16, tyUInt32, tyUInt64, + tyBigNum, TNimNodeKind = enum nkNone, nkSlot, nkList, nkCase TNimNode {.codegenType, final.} = object |