mirror of
https://github.com/sockspls/badfish
synced 2025-07-11 19:49:14 +00:00
Fix an incorrect 'friend' declaration
Spotted by Lee David. No functional change.
This commit is contained in:
parent
bc183b0c04
commit
9e72e35942
1 changed files with 1 additions and 1 deletions
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;
|
||||||
|
|
Loading…
Add table
Reference in a new issue