From: Marco Costalba Date: Mon, 25 Apr 2011 21:59:56 +0000 (+0100) Subject: Fix a compile error with gcc X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=03f4d1e8d64ac7d615553fff89870e195fda24a4;ds=sidebyside Fix a compile error with gcc It seems gcc does not like an extra semicolon. No functional change. Signed-off-by: Marco Costalba --- diff --git a/src/search.cpp b/src/search.cpp index c83de561..26cceeb4 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -2084,7 +2084,7 @@ split_point_start: // At split points actual search starts from here firstCall = false; return rm != Rml.end() ? rm->pv[0] : MOVE_NONE; - }; + } } // namespace