| 69 | } |
| 70 | |
| 71 | void HistogramRegistry::logReport(double elapsed) { |
| 72 | for (auto& i : histograms) { |
| 73 | // Reset all buckets in writeToLog function |
| 74 | i.second->writeToLog(elapsed); |
| 75 | } |
| 76 | } |
| 77 | |
| 78 | void HistogramRegistry::clear() { |
| 79 | for (auto& i : histograms) { |
no test coverage detected