| 79 | Profiler::~Profiler() {} |
| 80 | |
| 81 | void Profiler::displayTimers() |
| 82 | { |
| 83 | for (auto&& iter : _activeTimers) |
| 84 | { |
| 85 | ProfilingTimer* timer = iter.second; |
| 86 | AXLOGI("{}", timer->getDescription()); |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | // implementation of ProfilingTimer |
| 91 |
nothing calls this directly
no test coverage detected