diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2017-01-16 23:04:45 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2017-01-16 23:04:53 +0100 |
commit | 54a6c5b34844322f2bb50222cb779dde02c6cad4 (patch) | |
tree | 59e04ac016429193ba276e4f767819e7fdd6598a /compiler | |
parent | 915cc86f5d022e2a2eb3bbe03e3e3ec1c9e3e60a (diff) | |
download | Nim-54a6c5b34844322f2bb50222cb779dde02c6cad4.tar.gz |
fixes #5218
Diffstat (limited to 'compiler')
-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 78d245a97..fd703a433 100644 --- a/compiler/sighashes.nim +++ b/compiler/sighashes.nim @@ -224,7 +224,7 @@ proc hashType(c: var MD5Context, t: PType; flags: set[ConsiderFlag]) = c &= ',' else: for i in countup(0, sonsLen(t) - 1): c.hashType t.sons[i], flags - of tyRange: + of tyRange, tyStatic: #if CoType notin flags: c.hashTree(t.n) c.hashType(t.sons[0], flags) |