summary refs log tree commit diff stats
path: root/compiler
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2016-12-20 10:25:50 +0100
committerAraq <rumpf_a@web.de>2016-12-20 10:25:50 +0100
commitbafc94a49ab2a55066c9b9e8927ff049aa3dafa8 (patch)
tree5fab66da0785e5d50649930dde66ce14164fc0a4 /compiler
parent237252f90cbea354ee7104388b174f0ed899803c (diff)
downloadNim-bafc94a49ab2a55066c9b9e8927ff049aa3dafa8.tar.gz
bugfix: aporia compiles again
Diffstat (limited to 'compiler')
-rw-r--r--compiler/sighashes.nim1
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"