X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Ftt.h;h=46f5b11dd3940864ace0da1c377f95aa8411735d;hp=b43489dd796ebc8aff60902f12766b5ed5bedc7f;hb=6c0a37bbf2ecb828cb41cb3cfac122f34c2a6e4b;hpb=5c3ebd1fbfc8cb623dd49aabd03c33a7fcbaf127 diff --git a/src/tt.h b/src/tt.h index b43489dd..46f5b11d 100644 --- a/src/tt.h +++ b/src/tt.h @@ -115,10 +115,10 @@ public: TTEntry* first_entry(const Key posKey) const; private: - // Be sure 'writes' is at least one cache line away + // Be sure 'overwrites' is at least one cache line away // from read only variables. unsigned char pad_before[64 - sizeof(unsigned)]; - unsigned writes; // heavy SMP read/write access here + unsigned overwrites; // heavy SMP read/write access here unsigned char pad_after[64]; size_t size;