[board] Remove unused PlacedPiece::bitboard()

This commit is contained in:
Eryn Wells 2024-01-14 10:27:04 -08:00
parent e56d256812
commit 64b47a8d70

View file

@ -207,11 +207,6 @@ impl PlacedPiece {
pub fn square(&self) -> Square { pub fn square(&self) -> Square {
self.square self.square
} }
#[inline]
pub(crate) fn bitboard(&self) -> BitBoard {
self.square.into()
}
} }
#[cfg(test)] #[cfg(test)]