diff options
Diffstat (limited to 'compiler/sighashes.nim')
-rw-r--r-- | compiler/sighashes.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/sighashes.nim b/compiler/sighashes.nim index e46508cf2..4f945da5f 100644 --- a/compiler/sighashes.nim +++ b/compiler/sighashes.nim @@ -267,7 +267,7 @@ proc hashType*(t: PType; conf: ConfigRef; flags: set[ConsiderFlag] = {CoType}): db.exec(sql"INSERT OR IGNORE INTO sighashes(type, hash) VALUES (?, ?)", typeToString(t), $result) -proc hashProc*(s: PSym; conf: ConfigRef): SigHash = +proc hashProc(s: PSym; conf: ConfigRef): SigHash = var c: MD5Context md5Init c hashType c, s.typ, {CoProc}, conf |