Skip to content

Commit

Permalink
Merge pull request #2262 from hannobraun/clippy
Browse files Browse the repository at this point in the history
Fix Clippy warning
  • Loading branch information
hannobraun authored Mar 13, 2024
2 parents 315bf19 + de8fb0f commit 3a4a431
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 3a4a431

Please sign in to comment.