Fix a warning about result reused in macros.nim.

This commit is contained in:
Hans Raaf
2016-06-21 13:13:46 +02:00
parent 2405f8e347
commit 25c3a62acd

View File

@@ -758,12 +758,12 @@ template findChild*(n: NimNode; cond: expr): NimNode {.
## var res = findChild(n, it.kind == nnkPostfix and
## it.basename.ident == !"foo")
block:
var result: NimNode
var res: NimNode
for it in n.children:
if cond:
result = it
res = it
break
result
res
proc insert*(a: NimNode; pos: int; b: NimNode) {.compileTime.} =
## Insert node B into A at pos