mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-22 01:56:58 +08:00
Fix an incorrect 'friend' declaration
Spotted by Lee David. No functional change.
This commit is contained in:
2
src/tt.h
2
src/tt.h
@@ -54,7 +54,7 @@ struct TTEntry {
|
|||||||
Value eval_value() const { return (Value)evalValue; }
|
Value eval_value() const { return (Value)evalValue; }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
friend struct TranspositionTable;
|
friend class TranspositionTable;
|
||||||
|
|
||||||
uint32_t key32;
|
uint32_t key32;
|
||||||
uint16_t move16;
|
uint16_t move16;
|
||||||
|
|||||||
Reference in New Issue
Block a user