mirror of
https://github.com/opelly27/Stockfish.git
synced 2026-05-20 10:57:43 +00:00
Fix a compile error in debug mode
No functional change. Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
+1
-1
@@ -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