From 44560d9bfa086b304df69fa9367bd7acb0a4a4bf Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Tue, 11 Mar 2025 17:32:38 -0400 Subject: [PATCH] PosMap: remove unneeded type bound --- src/repr/board.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/repr/board.rs b/src/repr/board.rs index 7be64b5..f5762ed 100644 --- a/src/repr/board.rs +++ b/src/repr/board.rs @@ -10,7 +10,7 @@ use std::{ /// Map of all points on the board against some type T /// Used to index like so: example[i][j] /// with each coordinate -pub struct PosMap(ArrayVec); +pub struct PosMap(ArrayVec); impl PosMap { #[allow(clippy::new_without_default)]