mirror of https://github.com/buggins/dlangui.git
Fixed deprecation warning about variable shadowing
This commit is contained in:
parent
1e67893256
commit
e9b0a20482
|
@ -120,7 +120,7 @@ bool visit(Node3d node, bool delegate(Node3d node) visitor) {
|
|||
if (res)
|
||||
return true;
|
||||
foreach(child; node.children) {
|
||||
bool res = visit(child, visitor);
|
||||
res = visit(child, visitor);
|
||||
if (res)
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue