From: Marco Costalba Date: Mon, 25 Apr 2011 21:59:56 +0000 (+0100) Subject: Fix a compile error with gcc X-Git-Url: http://winboard.nl/cgi-bin?a=commitdiff_plain;h=03f4d1e8d64ac7d615553fff89870e195fda24a4;p=fairystockfish.git 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 c83de56..26cceeb 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