mirror of
https://github.com/sockspls/badfish
synced 2025-07-12 03:59:15 +00:00
remove parenthesis.
This commit is contained in:
parent
090e49547e
commit
a8e903c33a
1 changed files with 2 additions and 1 deletions
|
@ -136,7 +136,8 @@ constexpr bool more_than_one(Bitboard b) {
|
||||||
}
|
}
|
||||||
|
|
||||||
inline bool opposite_colors(Square s1, Square s2) {
|
inline bool opposite_colors(Square s1, Square s2) {
|
||||||
return (bool(DarkSquares & s1) != bool(DarkSquares & s2));
|
|
||||||
|
return bool(DarkSquares & s1) != bool(DarkSquares & s2);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// rank_bb() and file_bb() return a bitboard representing all the squares on
|
/// rank_bb() and file_bb() return a bitboard representing all the squares on
|
||||||
|
|
Loading…
Add table
Reference in a new issue