From: Marco Costalba Date: Sat, 14 Jun 2014 10:26:08 +0000 (+0200) Subject: Triviality in UCI::loop X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=2cb4c7052efa55d14a66aace65625d02acc044a3;hp=3c1201c20c6adceceff764a56aa80e615ca80c64 Triviality in UCI::loop Code style paranoid in action here :-) No functional change. --- diff --git a/src/uci.cpp b/src/uci.cpp index 26507064..b82eeff5 100644 --- a/src/uci.cpp +++ b/src/uci.cpp @@ -197,7 +197,6 @@ void UCI::loop(int argc, char* argv[]) { << "\n" << Options << "\nuciok" << sync_endl; - else if (token == "eval") sync_cout << Eval::trace(pos) << sync_endl; else if (token == "ucinewgame") TT.clear(); else if (token == "go") go(pos, is); else if (token == "position") position(pos, is); @@ -206,6 +205,7 @@ void UCI::loop(int argc, char* argv[]) { else if (token == "bench") benchmark(pos, is); else if (token == "d") sync_cout << pos.pretty() << sync_endl; else if (token == "isready") sync_cout << "readyok" << sync_endl; + else if (token == "eval") sync_cout << Eval::trace(pos) << sync_endl; else sync_cout << "Unknown command: " << cmd << sync_endl;