From: Marco Costalba Date: Fri, 3 Feb 2012 07:03:17 +0000 (+0100) Subject: Fix an alignment warning with MSVC X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=57e942145c113e9d1bed7eeef5089dd22eedaad6;ds=sidebyside Fix an alignment warning with MSVC The declared alignment is different from the one in the definition. No functional change. Signed-off-by: Marco Costalba --- diff --git a/src/bitboard.h b/src/bitboard.h index c80d549f..fafe9c35 100644 --- a/src/bitboard.h +++ b/src/bitboard.h @@ -23,6 +23,8 @@ #include "types.h" +CACHE_LINE_ALIGNMENT + extern Bitboard RMasks[64]; extern Bitboard RMagics[64]; extern Bitboard* RAttacks[64];