]> git.sesse.net Git - stockfish/blobdiff - src/bitboard.h
Update reverse move stats
[stockfish] / src / bitboard.h
index 7a16597d200e9467cb98e642e23699b7acb878bc..477b1655d5d5c2ece4317c97531716caddae20ba 100644 (file)
@@ -377,6 +377,8 @@ inline Square pop_lsb(Bitboard* b) {
 
 
 /// frontmost_sq() returns the most advanced square for the given color
-inline Square frontmost_sq(Color c, Bitboard b) { return c == WHITE ? msb(b) : lsb(b); }
+inline Square frontmost_sq(Color c, Bitboard b) {
+  return c == WHITE ? msb(b) : lsb(b);
+}
 
 #endif // #ifndef BITBOARD_H_INCLUDED