]> git.sesse.net Git - stockfish/blobdiff - src/uci.cpp
Cleanup comments and some code reorg.
[stockfish] / src / uci.cpp
index 1d8f5bdc05c4878d9786961ba6a0d497cd231006..8139fae4fd8be84099af2e1eae1c103aa4f8ae59 100644 (file)
@@ -178,8 +178,9 @@ void bench(Position& pos, std::istream& args, StateListPtr& states) {
     uint64_t    num, nodes = 0, cnt = 1;
 
     std::vector<std::string> list = setup_bench(pos, args);
-    num                           = count_if(list.begin(), list.end(),
-                                             [](const std::string& s) { return s.find("go ") == 0 || s.find("eval") == 0; });
+
+    num = count_if(list.begin(), list.end(),
+                   [](const std::string& s) { return s.find("go ") == 0 || s.find("eval") == 0; });
 
     TimePoint elapsed = now();