]> git.sesse.net Git - stockfish/blobdiff - src/misc.cpp
Rename dbg_hit_on_c() to dbg_hit_on()
[stockfish] / src / misc.cpp
index 2f99668d4457941b3d9ca0e2b5d0fba56890563a..1674c2a602b85f02e54c1690696ff8f2630440ce 100644 (file)
@@ -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() {