Remove all useless 'allow(unused)'

This commit is contained in:
Bruno BELANYI 2022-07-24 16:43:18 +02:00
parent be506747f8
commit 4de41a5544
7 changed files with 0 additions and 11 deletions

View file

@ -28,13 +28,11 @@ impl Magic {
/// A type encapsulating a database of [Magic] bitboard moves.
#[derive(Clone, Debug)]
#[allow(unused)] // FIXME: remove when used
pub(crate) struct MagicMoves {
magics: Vec<Magic>,
moves: Vec<Bitboard>,
}
#[allow(unused)] // FIXME: remove when used
impl MagicMoves {
/// Initialize a new [MagicMoves] given a matching list of [Magic] and its corresponding moves
/// as a [Bitboard].