]> git.sesse.net Git - stockfish/blobdiff - src/tt.cpp
Add Stockfish namespace.
[stockfish] / src / tt.cpp
index cb5af5c85905620a1537d06a7339ce6bca17176f..1f495ca9d12be229aaef9a8171690c5ae5d3ad73 100644 (file)
@@ -26,6 +26,8 @@
 #include "tt.h"
 #include "uci.h"
 
+namespace Stockfish {
+
 TranspositionTable TT; // Our global transposition table
 
 /// TTEntry::save() populates the TTEntry with a new node's data, possibly
@@ -156,3 +158,5 @@ int TranspositionTable::hashfull() const {
 
   return cnt / ClusterSize;
 }
+
+} // namespace Stockfish