Retire move_is_short_castle() and move_is_long_castle()

No functional change.

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
Marco Costalba
2011-07-03 10:08:09 +01:00
parent ff41b8df76
commit 95d9687d95
3 changed files with 7 additions and 20 deletions

View File

@@ -43,7 +43,7 @@ struct MoveList {
void operator++() { cur++; }
bool end() const { return cur == last; }
Move move() const { return cur->move; }
int size() const { return last - mlist; }
int size() const { return int(last - mlist); }
private:
MoveStack mlist[MAX_MOVES];