Fixed deprecation warning about variable shadowing

This commit is contained in:
Daniele Bondì 2020-02-29 22:40:20 +01:00
parent 1e67893256
commit e9b0a20482
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}