mirror of
https://codeberg.org/icewind/vbsp.git
synced 2026-06-03 10:44:07 +02:00
clippy fix
This commit is contained in:
parent
5c7b6e9fbd
commit
8e2bf62a2e
1 changed files with 1 additions and 1 deletions
|
|
@ -467,7 +467,7 @@ impl Bsp {
|
|||
self.nodes
|
||||
.iter()
|
||||
.flat_map(|node| node.children)
|
||||
.filter_map(|index| (index >= 0).then_some(index)),
|
||||
.filter(|index| *index >= 0),
|
||||
&self.nodes,
|
||||
"node",
|
||||
"node",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue