diff options
author | Araq <rumpf_a@web.de> | 2014-03-22 23:02:01 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-03-22 23:02:01 +0100 |
commit | a4f30c36822511ce4460a5d23b2ec82e36f5e796 (patch) | |
tree | 7cb754097ce646d86e57b59a0971f013a535b733 | |
parent | b76d2eac7f551cafa0ac797330e3bd0650ab26d9 (diff) | |
download | Nim-a4f30c36822511ce4460a5d23b2ec82e36f5e796.tar.gz |
fixes wrong commit
-rw-r--r-- | compiler/semgnrc.nim | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/compiler/semgnrc.nim b/compiler/semgnrc.nim index 2de397e25..ffc1a43b2 100644 --- a/compiler/semgnrc.nim +++ b/compiler/semgnrc.nim @@ -94,8 +94,6 @@ proc semGenericStmt(c: PContext, n: PNode, let luf = if withinMixin notin flags: {checkUndeclared} else: {} var s = qualifiedLookUp(c, n, luf) if s != nil: result = semGenericStmtSymbol(c, n, s) - else: - # XXX for example: ``result.add`` -- ``add`` needs to be looked up here... of nkEmpty, nkSym..nkNilLit: # see tests/compile/tgensymgeneric.nim: |