From: Marco Costalba Date: Sun, 23 Mar 2014 10:17:38 +0000 (+0100) Subject: Fix an incorrect 'friend' declaration X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=9e72e35942d8a33e4711343b7b0e140de95f8808 Fix an incorrect 'friend' declaration Spotted by Lee David. No functional change. --- diff --git a/src/tt.h b/src/tt.h index dc423dd2..ff3605da 100644 --- a/src/tt.h +++ b/src/tt.h @@ -54,7 +54,7 @@ struct TTEntry { Value eval_value() const { return (Value)evalValue; } private: - friend struct TranspositionTable; + friend class TranspositionTable; uint32_t key32; uint16_t move16;