]> git.sesse.net Git - stockfish/blobdiff - src/tt.h
Trivial code style fixes
[stockfish] / src / tt.h
index c442205253e2232aad77ffde7bf9ea70bc6bc0ba..8ec09a7c8e75865eaaf1251d1c2aaa2ed48b58a4 100644 (file)
--- a/src/tt.h
+++ b/src/tt.h
@@ -50,8 +50,8 @@ private:
     move16    = (uint16_t)m;
     value16   = (int16_t)v;
     evalValue = (int16_t)ev;
+    genBound8 = (uint8_t)(g | b);
     depth8    = (uint8_t)(d - DEPTH_NONE);
-    genBound8 = g | (uint8_t)b;
   }
 
   uint16_t key16;
@@ -70,7 +70,6 @@ private:
 const unsigned TTClusterSize = 3;
 
 struct TTCluster {
-
   TTEntry entry[TTClusterSize];
   char padding[2];
 };
@@ -109,7 +108,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