Cleanup: removed shadowed variable

This commit is contained in:
Jacques Lucke 2021-11-24 12:52:24 +01:00
parent 25478bdc9a
commit 833eb90820
1 changed files with 2 additions and 2 deletions

View File

@ -1666,8 +1666,8 @@ class GeometryNodesEvaluator {
for (const DOutputSocket &socket : locked_node.delayed_unused_outputs) {
this->send_output_unused_notification(socket);
}
for (const DNode &node : locked_node.delayed_scheduled_nodes) {
this->add_node_to_task_pool(node);
for (const DNode &node_to_schedule : locked_node.delayed_scheduled_nodes) {
this->add_node_to_task_pool(node_to_schedule);
}
}
};