]> git.sesse.net Git - stockfish/blobdiff - src/thread.cpp
Add Stockfish namespace.
[stockfish] / src / thread.cpp
index a12c0bccc1122f2c84eb6bb32aaa5902f7d2b7a9..3ef73dfa322ba39250d01b784308f1d68f842b0e 100644 (file)
@@ -26,6 +26,8 @@
 #include "syzygy/tbprobe.h"
 #include "tt.h"
 
+namespace Stockfish {
+
 ThreadPool Threads; // Global object
 
 
@@ -258,3 +260,5 @@ void ThreadPool::wait_for_search_finished() const {
         if (th != front())
             th->wait_for_search_finished();
 }
+
+} // namespace Stockfish