Fix warning on unused variable.

This commit is contained in:
Drew Galbraith 2024-06-26 23:08:55 -07:00
parent 5c350b1ddd
commit a6b35d6bf3
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ impl SquareIter {
std::iter::FilterMap<SquareIter, impl FnMut(Square) -> Option<(u8, u8)>>, std::iter::FilterMap<SquareIter, impl FnMut(Square) -> Option<(u8, u8)>>,
impl FnMut((u8, u8)) -> u8, impl FnMut((u8, u8)) -> u8,
> { > {
self.values_enumerate().map(|(i, v)| v) self.values_enumerate().map(|(_, v)| v)
} }
pub fn marks( pub fn marks(