From: ajithcj Date: Sat, 15 Oct 2016 07:29:24 +0000 (+0000) Subject: Remove useless assignments to currentMove X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=99f3ad6858889bbc40c016c96c9f7e53a773e49e;hp=99f3ad6858889bbc40c016c96c9f7e53a773e49e Remove useless assignments to currentMove We reference (ss-1)->currentMove, i.e. we peek current move of the parent node, so currentMove should be valid in the main move loop, when we search() the subtree, but outside of main loop it is useless. No functional change. ---