X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmisc.h;h=970f335d1b74f5f2bad89fe782a6479ab26b69d3;hp=c4232a48ce3c653e5e17c9d16e58d133c5a4315f;hb=15e21911110f9d459c4fef2bb17903d97345d0b9;hpb=41641e3b1eea0038ab6984766d2b3bca869be7fa diff --git a/src/misc.h b/src/misc.h index c4232a48..970f335d 100644 --- a/src/misc.h +++ b/src/misc.h @@ -20,7 +20,7 @@ #ifndef MISC_H_INCLUDED #define MISC_H_INCLUDED -#include +#include #include #include @@ -37,12 +37,6 @@ extern void dbg_mean_of(int v); extern void dbg_print(); -struct Log : public std::ofstream { - Log(const std::string& f = "log.txt") : std::ofstream(f.c_str(), std::ios::out | std::ios::app) {} - ~Log() { if (is_open()) close(); } -}; - - namespace Time { typedef int64_t point; inline point now() { return system_time_to_msec(); } @@ -51,11 +45,11 @@ namespace Time { template struct HashTable { - HashTable() : e(Size, Entry()) {} - Entry* operator[](Key k) { return &e[(uint32_t)k & (Size - 1)]; } + HashTable() : table(Size, Entry()) {} + Entry* operator[](Key k) { return &table[(uint32_t)k & (Size - 1)]; } private: - std::vector e; + std::vector table; };