[bitboard] Add separators to the NOT_A_FILE and NOT_H_FILE constants

This is a clippy suggestion.
This commit is contained in:
Eryn Wells 2025-05-16 07:44:59 -07:00
parent e5a5367864
commit 9943224ee0

View file

@ -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 {