diff options
author | Araq <rumpf_a@web.de> | 2016-12-20 10:25:50 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2016-12-20 10:25:50 +0100 |
commit | bafc94a49ab2a55066c9b9e8927ff049aa3dafa8 (patch) | |
tree | 5fab66da0785e5d50649930dde66ce14164fc0a4 /compiler | |
parent | 237252f90cbea354ee7104388b174f0ed899803c (diff) | |
download | Nim-bafc94a49ab2a55066c9b9e8927ff049aa3dafa8.tar.gz |
bugfix: aporia compiles again
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/sighashes.nim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/sighashes.nim b/compiler/sighashes.nim index ffe614efc..e7737e44a 100644 --- a/compiler/sighashes.nim +++ b/compiler/sighashes.nim @@ -224,6 +224,7 @@ proc hashType(c: var MD5Context, t: PType; flags: set[ConsiderFlag]) = if CoType notin flags: if tfNoSideEffect in t.flags: c &= ".noSideEffect" if tfThread in t.flags: c &= ".thread" + if tfVarargs in t.flags: c &= ".varargs" else: for i in 0.. <t.len: c.hashType(t.sons[i], flags) if tfNotNil in t.flags and CoType notin flags: c &= "not nil" |