From: joergoster Date: Wed, 17 Jun 2015 14:02:02 +0000 (+0100) Subject: Small coding style fix for Outpost array X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=e8cc5c996818c7e128bd8db7947d1c4c43be865f Small coding style fix for Outpost array No functional change Resolves #367 --- diff --git a/src/evaluate.cpp b/src/evaluate.cpp index f2c5cf7f..2f9cec5c 100644 --- a/src/evaluate.cpp +++ b/src/evaluate.cpp @@ -125,7 +125,10 @@ namespace { }; // Outpost[knight/bishop][supported by pawn] - const Score Outpost[2][2] = {{S(28,7), S(42,11)}, {S(12,3), S(18,5)}}; + const Score Outpost[][2] = { + { S(28, 7), S(42,11) }, // Knights + { S(12, 3), S(18, 5) } // Bishops + }; // Threat[defended/weak][minor/major attacking][attacked PieceType] contains // bonuses according to which piece type attacks which one.