]> git.sesse.net Git - stockfish/blobdiff - src/misc.h
Revert "Rook PSQT Tuned"
[stockfish] / src / misc.h
index 3cba486796bd93b0c5c83138f0f64e158cc3af0a..ddd05e4e13d56dc67a829cbf08bc07504e945505 100644 (file)
@@ -31,7 +31,6 @@
 
 const std::string engine_info(bool to_uci = false);
 void prefetch(void* addr);
-void prefetch2(void* addr);
 void start_logger(const std::string& fname);
 
 void dbg_hit_on(bool b);
@@ -53,7 +52,7 @@ struct HashTable {
   Entry* operator[](Key key) { return &table[(uint32_t)key & (Size - 1)]; }
 
 private:
-  std::vector<Entry> table = std::vector<Entry>(Size);
+  std::vector<Entry> table = std::vector<Entry>(Size); // Allocate on the heap
 };