X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmisc.cpp;h=aa2b23310da53ffd558bc41c4d62ece3c3dd8d33;hp=656b31557ea381a67a47274a98d014365ef6ae14;hb=950c8436edc50857b83eb3e0cbaca06407764655;hpb=42b48b08e81b55e385e55b3074b7c59d81809a45 diff --git a/src/misc.cpp b/src/misc.cpp index 656b3155..aa2b2331 100644 --- a/src/misc.cpp +++ b/src/misc.cpp @@ -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() {