diff options
author | Araq <rumpf_a@web.de> | 2014-08-28 23:48:42 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-08-28 23:48:42 +0200 |
commit | 5946747970f31742bc58bdd2fbe174b8b5cdc678 (patch) | |
tree | e1a429032294174db53820999f284cef7651847c /compiler/sigmatch.nim | |
parent | c68c42a237c09af4a23fcf207aa51f9f12f5e917 (diff) | |
download | Nim-5946747970f31742bc58bdd2fbe174b8b5cdc678.tar.gz |
updated the compiler to use the new symbol names
Diffstat (limited to 'compiler/sigmatch.nim')
-rw-r--r-- | compiler/sigmatch.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/sigmatch.nim b/compiler/sigmatch.nim index 588628c9a..26277eb50 100644 --- a/compiler/sigmatch.nim +++ b/compiler/sigmatch.nim @@ -1319,7 +1319,7 @@ proc incrIndexType(t: PType) = inc t.sons[0].n.sons[1].intVal proc matchesAux(c: PContext, n, nOrig: PNode, - m: var TCandidate, marker: var TIntSet) = + m: var TCandidate, marker: var IntSet) = template checkConstraint(n: expr) {.immediate, dirty.} = if not formal.constraint.isNil: if matchNodeKinds(formal.constraint, n): |