We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 090e495 commit a8e903cCopy full SHA for a8e903c
src/bitboard.h
@@ -136,7 +136,8 @@ constexpr bool more_than_one(Bitboard b) {
136
}
137
138
inline bool opposite_colors(Square s1, Square s2) {
139
- return (bool(DarkSquares & s1) != bool(DarkSquares & s2));
+
140
+ return bool(DarkSquares & s1) != bool(DarkSquares & s2);
141
142
143
/// rank_bb() and file_bb() return a bitboard representing all the squares on
0 commit comments