]> git.sesse.net Git - stockfish/blobdiff - src/thread.cpp
Unify History and Gains under a single Stats class
[stockfish] / src / thread.cpp
index 316ed76ba63783b4542ca2cc7bd5f89e80043dd1..1a39651673c2212aa40bb39a3d5b2c7b00ca694e 100644 (file)
@@ -371,8 +371,8 @@ void ThreadPool::start_thinking(const Position& pos, const LimitsType& limits,
   RootMoves.clear();
 
   for (MoveList<LEGAL> ml(pos); !ml.end(); ++ml)
-      if (  searchMoves.empty()
-         || std::count(searchMoves.begin(), searchMoves.end(), ml.move()))
+      if (   searchMoves.empty()
+          || std::count(searchMoves.begin(), searchMoves.end(), ml.move()))
           RootMoves.push_back(RootMove(ml.move()));
 
   main_thread()->thinking = true;