]> git.sesse.net Git - stockfish/blobdiff - src/bitboard.h
Fix a warning with MSVC
[stockfish] / src / bitboard.h
index c4fc26e1eefb1787b35ebb6090d271e53404c53b..a0f7ea8d69b0bfe325f4ceb060d0a91f49055210 100644 (file)
@@ -270,7 +270,7 @@ inline int popcount(Bitboard b) {
 
 #elif defined(_MSC_VER) || defined(__INTEL_COMPILER)
 
-  return _mm_popcnt_u64(b);
+  return (int)_mm_popcnt_u64(b);
 
 #elif defined(_MSC_VER)