| 29 | PerfCountersCacheEntry(const std::string &_key) : key(_key) {} |
| 30 | |
| 31 | ~PerfCountersCacheEntry() { |
| 32 | if (counters) { |
| 33 | cct->get_perfcounters_collection()->remove(counters.get()); |
| 34 | } |
| 35 | } |
| 36 | }; |
| 37 | |
| 38 | struct perf_counters_cache_item_to_key { |
nothing calls this directly
no test coverage detected