From 9e72e35942d8a33e4711343b7b0e140de95f8808 Mon Sep 17 00:00:00 2001 From: Marco Costalba Date: Sun, 23 Mar 2014 11:17:38 +0100 Subject: [PATCH 1/1] Fix an incorrect 'friend' declaration Spotted by Lee David. No functional change. --- src/tt.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.2