diff options
Diffstat (limited to 'compiler/canonicalizer.nim')
-rw-r--r-- | compiler/canonicalizer.nim | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/canonicalizer.nim b/compiler/canonicalizer.nim index 9afe4ab10..85dbe7536 100644 --- a/compiler/canonicalizer.nim +++ b/compiler/canonicalizer.nim @@ -158,7 +158,6 @@ proc hashType(c: var MD5Context, t: PType) = if tfThread in t.flags: c &= ".thread" else: for i in 0.. <t.len: c.hashType(t.sons[i]) - if tfShared in t.flags: c &= "shared" if tfNotNil in t.flags: c &= "not nil" proc canonConst(n: PNode): TUid = |