diff options
author | ringabout <43030857+ringabout@users.noreply.github.com> | 2022-07-27 17:15:51 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-27 11:15:51 +0200 |
commit | 5bbc5edf43e6ede3d162f0463cb74c0a6d58cc1d (patch) | |
tree | bbf34330d4481867690b2aea7b9578c28aba848d /compiler | |
parent | 4c46358db1c11b7c4772431ad5e158ab00a7f4fc (diff) | |
download | Nim-5bbc5edf43e6ede3d162f0463cb74c0a6d58cc1d.tar.gz |
fixes #20031; uint64 is an ordinal type since 1.0 (#20094)
* fixes #20031; uint64 is an ordinal type since 1.0 * Update compiler/semstmts.nim
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/semstmts.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/semstmts.nim b/compiler/semstmts.nim index f6136c363..8b0691abf 100644 --- a/compiler/semstmts.nim +++ b/compiler/semstmts.nim @@ -1050,7 +1050,7 @@ proc semCase(c: PContext, n: PNode; flags: TExprFlags): PNode = var typ = commonTypeBegin var hasElse = false let caseTyp = skipTypes(n[0].typ, abstractVar-{tyTypeDesc}) - const shouldChckCovered = {tyInt..tyInt64, tyChar, tyEnum, tyUInt..tyUInt32, tyBool} + const shouldChckCovered = {tyInt..tyInt64, tyChar, tyEnum, tyUInt..tyUInt64, tyBool} case caseTyp.kind of shouldChckCovered: chckCovered = true |