X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmisc.cpp;h=aa2b23310da53ffd558bc41c4d62ece3c3dd8d33;hp=9dbbe48af3c25bc034f396ede3905eb9ebef1dc3;hb=b9d4e6f7fd238edffd91ebbf4b944cddcd65a955;hpb=97a034ad3e8b25f0e8e1dd03d31f4689180f7547 diff --git a/src/misc.cpp b/src/misc.cpp index 9dbbe48a..aa2b2331 100644 --- a/src/misc.cpp +++ b/src/misc.cpp @@ -31,7 +31,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 = "6 RC1"; +const string Version = ""; /// Debug counters int64_t hits[2], means[2]; @@ -126,7 +126,7 @@ const string engine_info(bool to_uci) { /// Debug functions used mainly to collect run-time statistics void dbg_hit_on(bool b) { ++hits[0]; if (b) ++hits[1]; } -void dbg_hit_on_c(bool c, bool b) { if (c) dbg_hit_on(b); } +void dbg_hit_on(bool c, bool b) { if (c) dbg_hit_on(b); } void dbg_mean_of(int v) { ++means[0]; means[1] += v; } void dbg_print() {