From: Fabian Fichter Date: Sat, 1 Feb 2020 00:10:03 +0000 (+0100) Subject: Restore development version X-Git-Url: http://winboard.nl/cgi-bin?a=commitdiff_plain;h=d346764cd871196e430b0bfacb59779c249c01bd;p=fairystockfish.git Restore development version --- diff --git a/src/misc.cpp b/src/misc.cpp index 09f070d..e9cd096 100644 --- a/src/misc.cpp +++ b/src/misc.cpp @@ -56,7 +56,7 @@ namespace { /// Version number. If Version is left empty, then compile date in the format /// DD-MM-YY and show in engine_info. -const string Version = "11"; +const string Version = ""; /// Our fancy logging facility. The trick here is to replace cin.rdbuf() and /// cout.rdbuf() with two Tie objects that tie cin and cout to a file stream. We @@ -145,7 +145,7 @@ const string engine_info(bool to_uci) { ss << (Is64Bit ? " 64" : "") << (HasPext ? " BMI2" : (HasPopCnt ? " POPCNT" : "")) << (to_uci ? "\nid author ": " by ") - << "F. Fichter"; + << "Fabian Fichter"; return ss.str(); }