]> git.sesse.net Git - stockfish/blobdiff - src/thread.h
remove blank line between function and it's description
[stockfish] / src / thread.h
index 4a077962661e0cbbb2f8c370b81329b97672d9eb..5f33b7369d33cf7083b5c2fe75514c3a00023e45 100644 (file)
@@ -38,7 +38,6 @@ namespace Stockfish {
 // per-thread pawn and material hash tables so that once we get a
 // pointer to an entry its lifetime is unlimited and we don't have
 // to care about someone changing the entry under our feet.
-
 class Thread {
 
     std::mutex              mutex;
@@ -76,7 +75,6 @@ class Thread {
 
 
 // MainThread is a derived class specific for main thread
-
 struct MainThread: public Thread {
 
     using Thread::Thread;
@@ -97,7 +95,6 @@ struct MainThread: public Thread {
 // ThreadPool struct handles all the threads-related stuff like init, starting,
 // parking and, most importantly, launching a thread. All the access to threads
 // is done through this class.
-
 struct ThreadPool {
 
     void start_thinking(Position&, StateListPtr&, const Search::LimitsType&, bool = false);