Post-merge fixes.

This commit is contained in:
Tomasz Sobczyk
2021-04-18 20:33:17 +02:00
parent 08e255960d
commit 19f712cdbb
33 changed files with 372 additions and 768 deletions
+2 -2
View File
@@ -25,7 +25,7 @@
#include <mutex>
#include <optional>
namespace Tools::Stats
namespace Stockfish::Tools::Stats
{
struct StatisticGathererBase
{
@@ -398,7 +398,7 @@ namespace Tools::Stats
m_castling += 1;
else if (type_of(move) == PROMOTION)
m_promotion += 1;
else if (type_of(move) == ENPASSANT)
else if (type_of(move) == EN_PASSANT)
m_enpassant += 1;
else if (type_of(move) == NORMAL)
m_normal += 1;