]> git.sesse.net Git - stockfish/blobdiff - src/movepick.h
Simplified select best thread (#958)
[stockfish] / src / movepick.h
index 999ec9660d7450474232be18ee64e6970e8bf09f..6fbd8be1387fc46ce277a03f29a1f2442171ac19 100644 (file)
@@ -41,7 +41,6 @@ struct Stats {
 
   static const Value Max = Value(1 << 28);
 
-  Stats() { clear(); }
   const T* operator[](Piece pc) const { return table[pc]; }
   T* operator[](Piece pc) { return table[pc]; }
   void clear() { std::memset(table, 0, sizeof(table)); }