Skip to content

Commit

Permalink
Fix clippy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Zerthox committed Jul 23, 2024
1 parent 3ccd8f8 commit f1a7297
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bounds.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ pub trait Bounds {
let ([b1, b2], [b3, b4]) = b;
([a1.min(b1), a2.min(b2)], [a3.max(b3), a4.max(b4)])
})
.unwrap_or_else(|| (pos, pos))
.unwrap_or((pos, pos))
}
}

0 comments on commit f1a7297

Please sign in to comment.