| 39 | } |
| 40 | |
| 41 | void increment(const std::string& key, const bool prefixOnly = true) { |
| 42 | m_stats->increment(key); |
| 43 | if (!prefixOnly) m_stats_noprefix->increment(key); |
| 44 | } |
| 45 | |
| 46 | void decrement(const std::string& key, const bool prefixOnly = true) { |
| 47 | m_stats->decrement(key); |
no outgoing calls
no test coverage detected