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/core | |
parent | 308cfc49b8e2d429c2f15fe13645cf2413d67582 (diff) | |
download | Nim-b11fe5d0b477c58524ed3fc02ede6f13acef9622.tar.gz |
more uint related fixes
Diffstat (limited to 'lib/core')
-rwxr-xr-x | lib/core/typeinfo.nim | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/lib/core/typeinfo.nim b/lib/core/typeinfo.nim index ca2b68cc3..549e4724a 100755 --- a/lib/core/typeinfo.nim +++ b/lib/core/typeinfo.nim @@ -43,8 +43,13 @@ type akFloat = 36, ## any represents a float akFloat32 = 37, ## any represents a float32 akFloat64 = 38, ## any represents a float64 - akFloat128 = 39 ## any represents a float128 - + akFloat128 = 39, ## any represents a float128 + akUInt = 40, ## any represents an unsigned int + akUInt8 = 41, ## any represents an unsigned int8 + akUInt16 = 42, ## any represents an unsigned in16 + akUInt32 = 43, ## any represents an unsigned int32 + akUInt64 = 44, ## any represents an unsigned int64 + TAny* = object {.pure.} ## can represent any nimrod value; NOTE: the wrapped ## value can be modified with its wrapper! This means ## that ``TAny`` keeps a non-traced pointer to its |