diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2019-09-03 07:47:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-03 07:47:56 +0200 |
commit | 79f1b8592a24e878fd886127708929d7fc613842 (patch) | |
tree | 54f03ebd8539f4562d4e2f077d67812aea854889 /lib | |
parent | 5a03eea518ba3cfeaa9f57ef0b6f1cf7bc8ed1d9 (diff) | |
parent | ac6fcab7a4fc79ba0ca45f531ad5f4f213e9d4e7 (diff) | |
download | Nim-79f1b8592a24e878fd886127708929d7fc613842.tar.gz |
Merge pull request #12107 from nim-lang/uint-range-checks
Uint range checks
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 05dc43ab2..d3fd9ddc8 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. |