diff options
author | Araq <rumpf_a@web.de> | 2014-08-30 16:37:27 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-08-30 16:37:27 +0200 |
commit | 1f85b3b5d3f8a9cf84fc5c03604ac3a7ea901d8c (patch) | |
tree | 88799a003b88e742d8548a2965e9ef42b6ce2a3b /compiler/pretty.nim | |
parent | c40f981e647eef2fb558c462f1df10c61d250a97 (diff) | |
download | Nim-1f85b3b5d3f8a9cf84fc5c03604ac3a7ea901d8c.tar.gz |
VM supports math and a few os procs
Diffstat (limited to 'compiler/pretty.nim')
-rw-r--r-- | compiler/pretty.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/pretty.nim b/compiler/pretty.nim index 5f990a658..356399c1c 100644 --- a/compiler/pretty.nim +++ b/compiler/pretty.nim @@ -160,7 +160,7 @@ proc check(c: PGen, n: PNode) = check(c, a.sons[L-2]) check(c, a.sons[L-1]) of nkTypeSection, nkConstSection: - for i in countup(0, sonsLen(n) - 1): + for i in countup(0, sonsLen(n) - 1): let a = n.sons[i] if a.kind == nkCommentStmt: continue checkSonsLen(a, 3) |