Fix a couple of extra spaces

No functional change.
This commit is contained in:
Marco Costalba
2012-12-25 18:48:41 +01:00
parent e82382703c
commit b5b799b5ab
2 changed files with 2 additions and 2 deletions

View File

@@ -475,7 +475,7 @@ inline Move make_move(Square from, Square to) {
template<MoveType T>
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) {