X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fbitboard.h;h=390966e3494273969bdb53a50c6953a6c9782611;hp=a0f7ea8d69b0bfe325f4ceb060d0a91f49055210;hb=7f2eb10e93879bc569c7ddf6fb51d6f812cc477c;hpb=3487eb9f9ee910ab18d1a5e23f5fc3e507366c09 diff --git a/src/bitboard.h b/src/bitboard.h index a0f7ea8d..390966e3 100644 --- a/src/bitboard.h +++ b/src/bitboard.h @@ -272,10 +272,6 @@ inline int popcount(Bitboard b) { return (int)_mm_popcnt_u64(b); -#elif defined(_MSC_VER) - - return (int)__popcnt64(b); - #else // Assumed gcc or compatible compiler return __builtin_popcountll(b);