Retire one do_move() overload

After Lucas patch it is almost useless.

No functional change.
This commit is contained in:
Marco Costalba
2015-02-15 12:20:47 +01:00
parent dc13004283
commit 686b45e121
4 changed files with 4 additions and 11 deletions

View File

@@ -74,7 +74,7 @@ namespace {
while (is >> token && (m = UCI::to_move(pos, token)) != MOVE_NONE)
{
SetupStates->push(StateInfo());
pos.do_move(m, SetupStates->top());
pos.do_move(m, SetupStates->top(), pos.gives_check(m, CheckInfo(pos)));
}
}