1
0
Fork 0
mirror of https://github.com/sockspls/badfish synced 2025-04-30 00:33:09 +00:00

size_t cast in TranspositionTable::first_entry()

32-bit truncation would make this function bogus when clusterCount >= 2^33 (ie. Hash >= 256 GB).

No function change.
This commit is contained in:
lucasart 2014-07-03 18:23:56 +08:00
parent 85b08ce3ad
commit c192b692cf

View file

@ -109,7 +109,7 @@ extern TranspositionTable TT;
inline TTEntry* TranspositionTable::first_entry(const Key key) const {
return &table[(uint32_t)key & (clusterCount - 1)].entry[0];
return &table[(size_t)key & (clusterCount - 1)].entry[0];
}
#endif // #ifndef TT_H_INCLUDED