summary refs log tree commit diff stats
path: root/compiler/sem.nim
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2014-10-26 19:54:43 +0100
committerAraq <rumpf_a@web.de>2014-10-26 19:54:43 +0100
commit7a48942719f4a557abafefd6d5cbd8b25a283e3a (patch)
tree78e65172c02a0d2bde9d18aabbc699d575849b65 /compiler/sem.nim
parentfdf996925b6b23e3127ce699c976e9e07bdfe13f (diff)
downloadNim-7a48942719f4a557abafefd6d5cbd8b25a283e3a.tar.gz
nicer error messages (untested)
Diffstat (limited to 'compiler/sem.nim')
-rw-r--r--compiler/sem.nim3
1 files changed, 1 insertions, 2 deletions
diff --git a/compiler/sem.nim b/compiler/sem.nim
index 63475a566..81846e1b4 100644
--- a/compiler/sem.nim
+++ b/compiler/sem.nim
@@ -40,8 +40,7 @@ proc semParamList(c: PContext, n, genericParams: PNode, s: PSym)
 proc addParams(c: PContext, n: PNode, kind: TSymKind)
 proc maybeAddResult(c: PContext, s: PSym, n: PNode)
 proc instGenericContainer(c: PContext, n: PNode, header: PType): PType
-proc tryExpr(c: PContext, n: PNode,
-             flags: TExprFlags = {}, bufferErrors = false): PNode
+proc tryExpr(c: PContext, n: PNode, flags: TExprFlags = {}): PNode
 proc fixImmediateParams(n: PNode): PNode
 proc activate(c: PContext, n: PNode)
 proc semQuoteAst(c: PContext, n: PNode): PNode