diff options
author | Arne Döring <arne.doering@gmx.net> | 2019-08-21 19:15:15 +0200 |
---|---|---|
committer | Arne Döring <arne.doering@gmx.net> | 2019-08-21 19:24:36 +0200 |
commit | a562de2d9189706a9b7b9045c8abf9b821549692 (patch) | |
tree | 96f3570d9dfe33f363ac60199431c5ca4b6185cc /lib | |
parent | 2b2efe3dbe4e48843a923bcb7f55b1ed5d18d8b3 (diff) | |
download | Nim-a562de2d9189706a9b7b9045c8abf9b821549692.tar.gz |
squashed and merged with devel
Diffstat (limited to 'lib')
-rw-r--r-- | lib/system.nim | 2 |
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. |