X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmisc.cpp;h=1674c2a602b85f02e54c1690696ff8f2630440ce;hp=2f99668d4457941b3d9ca0e2b5d0fba56890563a;hb=8b0fee9998e2ae530fa57e55f6cf145779aef3d0;hpb=1277a428237eec3299c6606951fac014bb3ef851 diff --git a/src/misc.cpp b/src/misc.cpp index 2f99668d..1674c2a6 100644 --- a/src/misc.cpp +++ b/src/misc.cpp @@ -135,7 +135,7 @@ Time::point Time::now() { /// 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() {