From 3487eb9f9ee910ab18d1a5e23f5fc3e507366c09 Mon Sep 17 00:00:00 2001 From: Marco Costalba Date: Sun, 1 May 2016 15:10:33 +0200 Subject: [PATCH] Fix a warning with MSVC Introduced by 2dd24dc4e618dc7b ("Use popcount intrinsic with Intel") No functional change. --- src/bitboard.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bitboard.h b/src/bitboard.h index c4fc26e1..a0f7ea8d 100644 --- a/src/bitboard.h +++ b/src/bitboard.h @@ -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) -- 2.39.2