X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fbitboard.h;h=3ea18dd88d6f09bb31c9a0f9813b8a6c44f24214;hp=b0e272338c0f536f95067a4f34747ba6e714b22f;hb=37e38639279bf58558b92932739da57e7c2e3bdc;hpb=9690cd6295fbed93ee434e7b2e16181e475755ac;ds=inline diff --git a/src/bitboard.h b/src/bitboard.h index b0e27233..3ea18dd8 100644 --- a/src/bitboard.h +++ b/src/bitboard.h @@ -255,9 +255,6 @@ template<> inline int distance(Square x, Square y) { return std::abs(file_ template<> inline int distance(Square x, Square y) { return std::abs(rank_of(x) - rank_of(y)); } template<> inline int distance(Square x, Square y) { return SquareDistance[x][y]; } -template constexpr const T& clamp(const T& v, const T& lo, const T& hi) { - return v < lo ? lo : v > hi ? hi : v; -} /// attacks_bb() returns a bitboard representing all the squares attacked by a /// piece of type Pt (bishop or rook) placed on 's'.