]> git.sesse.net Git - stockfish/blobdiff - src/movegen.cpp
Use compiler name lookup to simplify code
[stockfish] / src / movegen.cpp
index dbdb0875b658b3ac197215e6572e22093c9c5117..a76d9f7c8e403b35dee1c7f2429310e6d020bf08 100644 (file)
@@ -352,7 +352,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<false>(b1) == 1 || count_1s<false>(b1) == 2);
+          assert(count_1s(b1) == 1 || count_1s(b1) == 2);
 
           b1 &= ~pinned;
           while (b1)