| 170 | return Instance().stats_collectors_[handle].MaxDeltaTime(); |
| 171 | } |
| 172 | double Statistics::GetMinDeltaTime(std::string const& tag) { return GetMinDeltaTime(GetHandle(tag)); } |
| 173 | double Statistics::GetMinDeltaTime(size_t handle) { |
| 174 | std::lock_guard<std::mutex> lock(Instance().mutex_); |
| 175 | return Instance().stats_collectors_[handle].MinDeltaTime(); |
nothing calls this directly
no test coverage detected