| 2392 | void clear() { m_num = 0; m_total = 0; m_total2 = 0; } |
| 2393 | |
| 2394 | void update(uint32_t val) { m_num++; m_total += val; m_total2 += val * val; } |
| 2395 | |
| 2396 | tracked_stat& operator += (uint32_t val) { update(val); return *this; } |
| 2397 |
no outgoing calls
no test coverage detected