X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Ftypes.h;h=51c05b2ffc12139ac8b6eca184b5b6707791d24a;hp=155c2e899737d8223d660d65af2fd9956b505acd;hb=99e547f4cb190e462d0c582b731a0fcf25ce1545;hpb=46fdb14b2f51386d14b3fd0ad49f511bb491bed6 diff --git a/src/types.h b/src/types.h index 155c2e89..51c05b2f 100644 --- a/src/types.h +++ b/src/types.h @@ -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; }