diff options
Diffstat (limited to 'compiler/sighashes.nim')
-rw-r--r-- | compiler/sighashes.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/sighashes.nim b/compiler/sighashes.nim index ce769ab3b..046479de4 100644 --- a/compiler/sighashes.nim +++ b/compiler/sighashes.nim @@ -134,7 +134,7 @@ proc hashType(c: var MD5Context, t: PType; flags: set[ConsiderFlag]) = let inst = t.typeInst t.typeInst = nil assert inst.kind == tyGenericInst - for i in countup(0, inst.len - 2): + for i in 0 .. inst.len - 2: c.hashType inst.sons[i], flags t.typeInst = inst return |