X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmisc.h;h=92bde8f00618f9a70b7871dd958c69b759182693;hp=d7addd845351f2a5f03fc9552ea6255c17bcb314;hb=bee4f1cf09132375e1d151c4c0bccb2f9fc38d29;hpb=c9dcda6ac488c0058ebd567e1f52e30b8cd0db20 diff --git a/src/misc.h b/src/misc.h index d7addd84..92bde8f0 100644 --- a/src/misc.h +++ b/src/misc.h @@ -51,18 +51,18 @@ 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; }; -enum SyncCout { io_lock, io_unlock }; +enum SyncCout { IO_LOCK, IO_UNLOCK }; std::ostream& operator<<(std::ostream&, SyncCout); -#define sync_cout std::cout << io_lock -#define sync_endl std::endl << io_unlock +#define sync_cout std::cout << IO_LOCK +#define sync_endl std::endl << IO_UNLOCK #endif // #ifndef MISC_H_INCLUDED