From: Marco Costalba Date: Mon, 29 Dec 2008 10:36:11 +0000 (+0100) Subject: Remove a gcc warning on an unused variable X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=0da1d6a84612c8443b3e3c9b3f74890635ce23e2;ds=inline Remove a gcc warning on an unused variable Signed-off-by: Marco Costalba --- diff --git a/src/search.cpp b/src/search.cpp index 15ebbad0..2fe6a5c1 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -449,7 +449,6 @@ void think(const Position &pos, bool infinite, bool ponder, int side_to_move, // Set thinking time: int myTime = time[side_to_move]; int myIncrement = increment[side_to_move]; - int oppTime = time[1 - side_to_move]; if (!movesToGo) // Sudden death time control {