1
0
Fork 0
mirror of https://codeberg.org/icewind/vbsp.git synced 2026-06-03 18:54:05 +02:00

clippy fixes

This commit is contained in:
Robin Appelman 2022-02-27 19:18:57 +01:00
commit ea557f08d3
4 changed files with 6 additions and 6 deletions

View file

@ -51,7 +51,7 @@ impl<'a> Handle<'a, DisplacementInfo> {
.unwrap();
corner_positions.rotate_left(start_index);
corner_positions.try_into().unwrap()
corner_positions
}
fn subdivided_face(&self) -> impl Iterator<Item = Vector> + 'a {