Skip to content

Commit

Permalink
Fix Clippy warning
Browse files Browse the repository at this point in the history
Now idea how that one made it past the CI build. I'll have to
investigate.
  • Loading branch information
hannobraun committed Mar 13, 2024
1 parent 315bf19 commit de8fb0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/fj-core/src/validate/sketch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ mod tests {

let exterior = region.exterior();
let cloned_edges: Vec<_> =
exterior.half_edges().iter().map(|e| e.clone()).collect();
exterior.half_edges().iter().cloned().collect();
let interior = Cycle::new(cloned_edges).insert(&mut core);

let invalid_sketch =
Expand Down

0 comments on commit de8fb0f

Please sign in to comment.