diff options
Diffstat (limited to 'compiler/evals.nim')
-rwxr-xr-x | compiler/evals.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/evals.nim b/compiler/evals.nim index adff11567..40f1f8e01 100755 --- a/compiler/evals.nim +++ b/compiler/evals.nim @@ -829,7 +829,7 @@ proc isEmpty(n: PNode): bool = # Maybe the lexer should mark both the beginning and the end of expressions, # then this function could be removed. proc stringStartingLine(s: PNode): int = - result = s.info.line - countLines(s.strVal) + result = s.info.line.int - countLines(s.strVal) proc evalParseExpr(c: PEvalContext, n: PNode): PNode = var code = evalAux(c, n.sons[1], {}) |