X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;ds=sidebyside;f=src%2Ftt.h;h=420aaa6b60c03a106a949a6c8dfc7e447273fdf0;hb=595fc342cf4a039cc59ca6adec5025d14201714b;hp=b2f9e0dcdf68a0c643a121dbc8dc4078faeeb1d2;hpb=4eb2d8ce095b284a1e55762548d9821a83a19b3b;p=stockfish diff --git a/src/tt.h b/src/tt.h index b2f9e0dc..420aaa6b 100644 --- a/src/tt.h +++ b/src/tt.h @@ -76,7 +76,7 @@ class TranspositionTable { static const int CacheLineSize = 64; static const int TTClusterSize = 3; - struct TTCluster { + struct Cluster { TTEntry entry[TTClusterSize]; char padding[2]; // Align to the cache line size }; @@ -96,7 +96,7 @@ public: private: size_t clusterCount; - TTCluster* table; + Cluster* table; void* mem; uint8_t generation8; // Size must be not bigger than TTEntry::genBound8 };