From f4010867f46f0a43c6106a3bcb95424a0ea76ce5 Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Tue, 21 Jan 2025 20:18:08 +0100 Subject: [PATCH] Remove redundant `#[allow(...)]` --- experiments/2024-12-09/src/math/plane.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/experiments/2024-12-09/src/math/plane.rs b/experiments/2024-12-09/src/math/plane.rs index 8ca61dd00..13582c3d6 100644 --- a/experiments/2024-12-09/src/math/plane.rs +++ b/experiments/2024-12-09/src/math/plane.rs @@ -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,