]> git.sesse.net Git - stockfish/blobdiff - src/misc.h
Additional renaming from DON
[stockfish] / src / misc.h
index c4232a48ce3c653e5e17c9d16e58d133c5a4315f..92bde8f00618f9a70b7871dd958c69b759182693 100644 (file)
@@ -51,11 +51,11 @@ namespace Time {
 
 template<class Entry, int Size>
 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<Entry> e;
+  std::vector<Entry> table;
 };