mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-21 01:27:16 +08:00
Fix a compile error in debug mode
No functional change. Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
@@ -508,7 +508,7 @@ int Book::find_entry(uint64_t key) {
|
|||||||
BookEntry Book::read_entry(int idx) {
|
BookEntry Book::read_entry(int idx) {
|
||||||
|
|
||||||
assert(idx >= 0 && idx < bookSize);
|
assert(idx >= 0 && idx < bookSize);
|
||||||
assert(is_open());
|
assert(bookFile.is_open());
|
||||||
|
|
||||||
BookEntry e;
|
BookEntry e;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user