Rename dbg_hit_on_c() to dbg_hit_on()

Use an overload instead of a new named function.

I have found this handier and easier when adding
some quick debug code.

No functional change.
This commit is contained in:
Marco Costalba
2015-02-07 11:15:38 +01:00
parent 1277a42823
commit 8b0fee9998
4 changed files with 6 additions and 6 deletions

View 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() {