Skip to content

Commit a8e903c

Browse files
protonspringStéphane Nicolet
authored andcommitted
remove parenthesis.
1 parent 090e495 commit a8e903c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/bitboard.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,8 @@ constexpr bool more_than_one(Bitboard b) {
136136
}
137137

138138
inline bool opposite_colors(Square s1, Square s2) {
139-
return (bool(DarkSquares & s1) != bool(DarkSquares & s2));
139+
140+
return bool(DarkSquares & s1) != bool(DarkSquares & s2);
140141
}
141142

142143
/// rank_bb() and file_bb() return a bitboard representing all the squares on

0 commit comments

Comments
 (0)