mirror of
https://github.com/opelly27/Stockfish.git
synced 2026-05-20 14:27:45 +00:00
Make casting styles consistent
Make casting styles consistent with the rest of the code. closes https://github.com/official-stockfish/Stockfish/pull/4793 No functional change
This commit is contained in:
committed by
Joost VandeVondele
parent
952740b36c
commit
fce4cc1829
+1
-1
@@ -264,7 +264,7 @@ inline int popcount(Bitboard b) {
|
||||
|
||||
#elif defined(_MSC_VER)
|
||||
|
||||
return (int)_mm_popcnt_u64(b);
|
||||
return int(_mm_popcnt_u64(b));
|
||||
|
||||
#else // Assumed gcc or compatible compiler
|
||||
|
||||
|
||||
Reference in New Issue
Block a user