]> git.sesse.net Git - stockfish/blobdiff - src/search.cpp
Remove two useless assignments (#2093)
[stockfish] / src / search.cpp
index cb6c5d44ebbcf18d2557b283a69be5cf6f820642..15e88ca4f2746939bd3c3e25b04ed15ff11b3824 100644 (file)
@@ -1226,8 +1226,7 @@ moves_loop: // When in check, search starts from here
 
     Thread* thisThread = pos.this_thread();
     (ss+1)->ply = ss->ply + 1;
-    ss->currentMove = bestMove = MOVE_NONE;
-    ss->continuationHistory = &thisThread->continuationHistory[NO_PIECE][0];
+    bestMove = MOVE_NONE;
     inCheck = pos.checkers();
     moveCount = 0;