]> git.sesse.net Git - stockfish/blobdiff - src/misc.h
Temporary patch to show the compiler for TCEC submission
[stockfish] / src / misc.h
index 3cba486796bd93b0c5c83138f0f64e158cc3af0a..0efdd562e1d168080e68f3bc51f1ded7d8eb7468 100644 (file)
@@ -30,8 +30,8 @@
 #include "types.h"
 
 const std::string engine_info(bool to_uci = false);
+const std::string compiler_info();
 void prefetch(void* addr);
-void prefetch2(void* addr);
 void start_logger(const std::string& fname);
 
 void dbg_hit_on(bool b);
@@ -53,7 +53,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
 };