mirror of
https://github.com/sockspls/badfish
synced 2025-07-13 20:49:15 +00:00
Drop a double semicolon
Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
parent
9d044cf4ee
commit
56f607fe0f
1 changed files with 1 additions and 1 deletions
|
@ -851,7 +851,7 @@ namespace {
|
||||||
|
|
||||||
// Double pawn pushes
|
// Double pawn pushes
|
||||||
b2 = (Us == WHITE ? b1 << 8 : b1 >> 8) & pos.empty_squares() & TRank3BB;
|
b2 = (Us == WHITE ? b1 << 8 : b1 >> 8) & pos.empty_squares() & TRank3BB;
|
||||||
b2 = (Us == WHITE ? b2 << 8 : b2 >> 8) & blockSquares;;
|
b2 = (Us == WHITE ? b2 << 8 : b2 >> 8) & blockSquares;
|
||||||
while (b2)
|
while (b2)
|
||||||
{
|
{
|
||||||
to = pop_1st_bit(&b2);
|
to = pop_1st_bit(&b2);
|
||||||
|
|
Loading…
Add table
Reference in a new issue