X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;ds=sidebyside;f=src%2Fmisc.cpp;h=1674c2a602b85f02e54c1690696ff8f2630440ce;hb=152a4dc5cd1c5190b607f4b819ad9bd10bcc1baa;hp=2f99668d4457941b3d9ca0e2b5d0fba56890563a;hpb=60c121f3b1ee7d5ced3435cc1718e4e6e6fd8383;p=stockfish 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() {