X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fthread.cpp;h=1a39651673c2212aa40bb39a3d5b2c7b00ca694e;hp=316ed76ba63783b4542ca2cc7bd5f89e80043dd1;hb=ddbe6082c47befcfe2bd2e778866c8fbda33b8e2;hpb=53051eefc741586f72ccbf9a765592c4ca6030bd diff --git a/src/thread.cpp b/src/thread.cpp index 316ed76b..1a396516 100644 --- a/src/thread.cpp +++ b/src/thread.cpp @@ -371,8 +371,8 @@ void ThreadPool::start_thinking(const Position& pos, const LimitsType& limits, RootMoves.clear(); for (MoveList 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;