[bitboard] Add separators to the NOT_A_FILE and NOT_H_FILE constants
This is a clippy suggestion.
This commit is contained in:
parent
e5a5367864
commit
9943224ee0
1 changed files with 2 additions and 2 deletions
|
@ -3,8 +3,8 @@
|
|||
use super::BitBoard;
|
||||
|
||||
impl BitBoard {
|
||||
const NOT_A_FILE: u64 = 0xfefefefefefefefe;
|
||||
const NOT_H_FILE: u64 = 0x7f7f7f7f7f7f7f7f;
|
||||
const NOT_A_FILE: u64 = 0xfefe_fefe_fefe_fefe;
|
||||
const NOT_H_FILE: u64 = 0x7f7f_7f7f_7f7f_7f7f;
|
||||
|
||||
#[inline]
|
||||
pub fn shift_north(&self, n: u8) -> BitBoard {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue