Retire mirror()

Inline the only caller site.

No functional change.
This commit is contained in:
Marco Costalba
2013-10-24 20:38:02 +02:00
parent 281472e50e
commit 48f38f3092
2 changed files with 1 additions and 5 deletions

View File

@@ -371,10 +371,6 @@ inline Rank rank_of(Square s) {
return Rank(s >> 3);
}
inline Square mirror(Square s) {
return Square(s ^ 7); // Horizontal flip SQ_A1 -> SQ_H1
}
inline Square relative_square(Color c, Square s) {
return Square(s ^ (c * 56));
}