From: Marco Costalba Date: Thu, 5 Jun 2014 21:46:58 +0000 (+0200) Subject: Fix a warning with MSVC Premium 2013 X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=323a006666ed4843299e24351f29282947dea7f0 Fix a warning with MSVC Premium 2013 Reported by Ron Britvich. No functional change. --- diff --git a/src/types.h b/src/types.h index 5fee1786..f1cfa140 100644 --- a/src/types.h +++ b/src/types.h @@ -337,6 +337,8 @@ inline Score operator/(Score s, int i) { return make_score(mg_value(s) / i, eg_value(s) / i); } +CACHE_LINE_ALIGNMENT + extern Value PieceValue[PHASE_NB][PIECE_NB]; struct ExtMove {