Silence some warnings with MSVC 2013

No functional change.
This commit is contained in:
Marco Costalba
2016-08-27 12:16:13 +02:00
parent 805afcbf3d
commit 0b944c7186
2 changed files with 3 additions and 1 deletions

View File

@@ -39,7 +39,7 @@ struct TTEntry {
Move move() const { return (Move )move16; }
Value value() const { return (Value)value16; }
Value eval() const { return (Value)eval16; }
Depth depth() const { return (Depth)(depth8 * ONE_PLY); }
Depth depth() const { return (Depth)(depth8 * int(ONE_PLY)); }
Bound bound() const { return (Bound)(genBound8 & 0x3); }
void save(Key k, Value v, Bound b, Depth d, Move m, Value ev, uint8_t g) {