summary refs log tree commit diff stats
path: root/lib
diff options
context:
space:
mode:
authorArne Döring <arne.doering@gmx.net>2019-08-21 19:15:15 +0200
committerArne Döring <arne.doering@gmx.net>2019-08-21 19:24:36 +0200
commita562de2d9189706a9b7b9045c8abf9b821549692 (patch)
tree96f3570d9dfe33f363ac60199431c5ca4b6185cc /lib
parent2b2efe3dbe4e48843a923bcb7f55b1ed5d18d8b3 (diff)
downloadNim-a562de2d9189706a9b7b9045c8abf9b821549692.tar.gz
squashed and merged with devel
Diffstat (limited to 'lib')
-rw-r--r--lib/system.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system.nim b/lib/system.nim
index 7e23b5188..61c9ee57f 100644
--- a/lib/system.nim
+++ b/lib/system.nim
@@ -97,7 +97,7 @@ type
   SomeInteger* = SomeSignedInt|SomeUnsignedInt
     ## Type class matching all integer types.
 
-  SomeOrdinal* = int|int8|int16|int32|int64|bool|enum|uint8|uint16|uint32
+  SomeOrdinal* = int|int8|int16|int32|int64|bool|enum|uint|uint8|uint16|uint32|uint64
     ## Type class matching all ordinal types; however this includes enums with
     ## holes.