Assorted code-style triviality

No functional change.
This commit is contained in:
Marco Costalba
2014-11-09 09:24:06 +01:00
parent 6fb0a1bc40
commit 57fdfdedcf
4 changed files with 36 additions and 42 deletions

View File

@@ -427,7 +427,7 @@ inline Move make(Square from, Square to, PieceType pt = KNIGHT) {
}
inline bool is_ok(Move m) {
return from_sq(m) != to_sq(m); // Catches also MOVE_NULL and MOVE_NONE
return from_sq(m) != to_sq(m); // Catch also MOVE_NULL and MOVE_NONE
}
#endif // #ifndef TYPES_H_INCLUDED