diff options
author | Araq <rumpf_a@web.de> | 2018-04-06 14:11:11 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2018-04-06 14:11:11 +0200 |
commit | 7e1f0e28aeb2b699fe93883fc6743ad9ac7a4354 (patch) | |
tree | ab86035d08813610cf9ddce36761904fab7c41ee | |
parent | f9449ef954c0548107691afb18675f2bae3b3342 (diff) | |
download | Nim-7e1f0e28aeb2b699fe93883fc6743ad9ac7a4354.tar.gz |
revert the error message
-rw-r--r-- | compiler/semcall.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/semcall.nim b/compiler/semcall.nim index 429c96479..0fc12f164 100644 --- a/compiler/semcall.nim +++ b/compiler/semcall.nim @@ -302,7 +302,7 @@ proc resolveOverloads(c: PContext, n, orig: PNode, if nfDotField in n.flags and nfExplicitCall notin n.flags: localError(n.info, errUndeclaredField, considerQuotedIdent(f, n).s) else: - localError(n.info, errUndeclaredRoutine, $n) #considerQuotedIdent(f, n).s) + localError(n.info, errUndeclaredRoutine, considerQuotedIdent(f, n).s) return elif result.state != csMatch: if nfExprCall in n.flags: |