| 168 | explicit CacheStats (std::string name_) |
| 169 | : name(std::move(name_)) {} |
| 170 | void recordBuild () noexcept { |
| 171 | ++size; |
| 172 | ++nbuild; |
| 173 | maxsize = std::max(maxsize, size); |
| 174 | } |
| 175 | void recordErase (Long n) noexcept { |
| 176 | // n: how many times the item to be deleted has been used. |
| 177 | --size; |
no outgoing calls
no test coverage detected