X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.cpp;h=de487e57b2d000768842b98384402921e8a95261;hp=e8e15ef2cf58826edff4c82b9a9d97ce948fe384;hb=732aa34e3dec39de9c80a07f6ecba7cb0569b95e;hpb=862934d7aeed1722bfff2872f755c708416c41a7 diff --git a/src/search.cpp b/src/search.cpp index e8e15ef2..de487e57 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -197,9 +197,10 @@ void Search::clear() { th->history.clear(); th->counterMoveHistory.clear(); th->resetCalls = true; + CounterMoveStats& cm = th->counterMoveHistory[NO_PIECE][0]; - int* t = &cm[NO_PIECE][0]; - std::fill(t, t + sizeof(cm), CounterMovePruneThreshold - 1); + auto* t = &cm[NO_PIECE][0]; + std::fill(t, t + sizeof(cm)/sizeof(*t), CounterMovePruneThreshold - 1); } Threads.main()->previousScore = VALUE_INFINITE;