]> git.sesse.net Git - stockfish/blobdiff - src/book.cpp
Use type_of() to categorize the moves
[stockfish] / src / book.cpp
index 40b647cfe44a8ad27e1dc33965f0867d6377d531..cd3b432b0d24c80fcbf89e7569af78d37fee58e6 100644 (file)
@@ -445,7 +445,7 @@ Move Book::probe(const Position& pos, const string& fName, bool pickBest) {
       move = make_promotion(from_sq(move), to_sq(move), PieceType(pt + 1));
 
   // Add 'special move' flags and verify it is legal
-  for (MoveList<MV_LEGAL> ml(pos); !ml.end(); ++ml)
+  for (MoveList<LEGAL> ml(pos); !ml.end(); ++ml)
       if (move == (ml.move() & 0x3FFF))
           return ml.move();