fix sighashes for generic ref (#20723)

the `hashType` issue in #12229 was never really fixed - it just stopped
being called in that context
This commit is contained in:
Jacek Sieka
2022-11-01 19:01:06 +01:00
committed by GitHub
parent 59083e2e48
commit 58f79e7c3e

View File

@@ -185,7 +185,8 @@ proc hashType(c: var MD5Context, t: PType; flags: set[ConsiderFlag]) =
hashType c, t[0], flags
of tyRef, tyPtr, tyGenericBody, tyVar:
c &= char(t.kind)
c.hashType t.lastSon, flags
if t.sons.len > 0:
c.hashType t.lastSon, flags
if tfVarIsPtr in t.flags: c &= ".varisptr"
of tyFromExpr:
c &= char(t.kind)