X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;ds=sidebyside;f=src%2Fthread.cpp;h=f216c3218ca68ac5b5e3e5effa77c991a42df81b;hb=49a1fdd3fe894d170a2c2781238c0f0f907c08cc;hp=6c1d729987d90bb237f0b0c9034d78d19aa2d7f0;hpb=58d3ee61757215292b48e32caec9931d901c2940;p=stockfish diff --git a/src/thread.cpp b/src/thread.cpp index 6c1d7299..f216c321 100644 --- a/src/thread.cpp +++ b/src/thread.cpp @@ -18,7 +18,6 @@ along with this program. If not, see . */ -#include // For std::count #include #include "movegen.h" @@ -32,7 +31,7 @@ ThreadPool Threads; // Global object /// Thread constructor launches the thread and waits until it goes to sleep -/// in idle_loop(). Note that 'searching' and 'exit' should be alredy set. +/// in idle_loop(). Note that 'searching' and 'exit' should be already set. Thread::Thread(size_t n) : idx(n), stdThread(&Thread::idle_loop, this) {