Remove redundant #[allow(...)]

This commit is contained in:
Hanno Braun 2025-01-21 20:18:08 +01:00
parent 9eecc85c94
commit f4010867f4

View File

@ -7,7 +7,6 @@ pub struct Plane {
}
impl Plane {
#[allow(unused)] // code using this is being worked on
pub fn from_points([a, b, c]: [Point<3>; 3]) -> Self {
Self {
origin: a,