dead code removal
This commit is contained in:
@@ -112,22 +112,6 @@ impl BitBoard {
|
||||
}
|
||||
}
|
||||
|
||||
impl std::ops::BitAnd for BitBoard {
|
||||
type Output = BitBoard;
|
||||
|
||||
fn bitand(self, rhs: Self) -> Self::Output {
|
||||
Self(self.0 & rhs.0)
|
||||
}
|
||||
}
|
||||
|
||||
impl std::ops::BitOr for BitBoard {
|
||||
type Output = BitBoard;
|
||||
|
||||
fn bitor(self, rhs: Self) -> Self::Output {
|
||||
Self(self.0 | rhs.0)
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod test {
|
||||
use super::*;
|
||||
|
||||
Reference in New Issue
Block a user