From f2691fdc7e7f1d113a30c8122e0398ef96cfede8 Mon Sep 17 00:00:00 2001 From: Araq Date: Tue, 2 Apr 2019 12:24:58 +0200 Subject: [PATCH] try to make travis green --- compiler/sighashes.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/sighashes.nim b/compiler/sighashes.nim index 19175f3b3d..d7e80b3426 100644 --- a/compiler/sighashes.nim +++ b/compiler/sighashes.nim @@ -152,7 +152,7 @@ proc hashType(c: var MD5Context, t: PType; flags: set[ConsiderFlag]) = for i in countup(0, sonsLen(t) - 1): c.hashType t.sons[i], flags of tyDistinct: - if CoType in flags: + if {CoType, CoConsiderOwned} * flags == {CoType}: c.hashType t.lastSon, flags else: c.hashSym(t.sym)