From 323a006666ed4843299e24351f29282947dea7f0 Mon Sep 17 00:00:00 2001 From: Marco Costalba Date: Thu, 5 Jun 2014 23:46:58 +0200 Subject: [PATCH] Fix a warning with MSVC Premium 2013 Reported by Ron Britvich. No functional change. --- src/types.h | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/src/types.h b/src/types.h index 5fee178..f1cfa14 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 { -- 1.7.0.4