]> git.sesse.net Git - stockfish/blobdiff - src/types.h
Rename MoveStack to ExtMove
[stockfish] / src / types.h
index 155c2e899737d8223d660d65af2fd9956b505acd..51c05b2ffc12139ac8b6eca184b5b6707791d24a 100644 (file)
@@ -313,12 +313,12 @@ inline Score operator/(Score s, int i) {
 
 extern Value PieceValue[PHASE_NB][PIECE_NB];
 
-struct MoveStack {
+struct ExtMove {
   Move move;
   int score;
 };
 
-inline bool operator<(const MoveStack& f, const MoveStack& s) {
+inline bool operator<(const ExtMove& f, const ExtMove& s) {
   return f.score < s.score;
 }