X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmovegen.cpp;h=4f1d14dee0ed4814db3aac1a5f124aac115dee28;hp=a783a6251b8b7ca6319d127cb7b1eb8842fa8dbb;hb=628f844c116e3afe99d0f72ca5f6cd2119e918d9;hpb=c729e4e1aba0d0d1cded8bf1dc1eb6c7e56938dd diff --git a/src/movegen.cpp b/src/movegen.cpp index a783a625..4f1d14de 100644 --- a/src/movegen.cpp +++ b/src/movegen.cpp @@ -24,6 +24,7 @@ #include +#include "bitcount.h" #include "movegen.h" // Simple macro to wrap a very common while loop, no facny, no flexibility, @@ -333,7 +334,7 @@ int generate_evasions(const Position& pos, MoveStack* mlist, Bitboard pinned) { // The checking pawn cannot be a discovered (bishop) check candidate // otherwise we were in check also before last double push move. assert(!bit_is_set(pos.discovered_check_candidates(them), checksq)); - assert(count_1s(b1) == 1 || count_1s(b1) == 2); + assert(count_1s(b1) == 1 || count_1s(b1) == 2); b1 &= ~pinned; while (b1)