X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Ftypes.h;h=506e1b0f9b5f1adeb6c82db127d89b5165432ec4;hp=99567bd7e22a608de7ca91a16d81058112661624;hb=b5b799b5ab4de93aa8a03a310d2f178698a5cf86;hpb=e82382703c96cfc480555e9db29d999e1f54a38f diff --git a/src/types.h b/src/types.h index 99567bd7..506e1b0f 100644 --- a/src/types.h +++ b/src/types.h @@ -475,7 +475,7 @@ inline Move make_move(Square from, Square to) { template inline Move make(Square from, Square to, PieceType pt = KNIGHT) { - return Move(to | (from << 6) | T | ((pt - KNIGHT) << 12)) ; + return Move(to | (from << 6) | T | ((pt - KNIGHT) << 12)); } inline bool is_ok(Move m) {