| 81 | } |
| 82 | |
| 83 | long long |
| 84 | HighPrecisionTimer::ElapsedMicro() |
| 85 | { |
| 86 | uint64_t current = mach_absolute_time(); |
| 87 | return static_cast<double>(current - startTime) * timeConvert; |
| 88 | } |
| 89 | |
| 90 | #elif defined(US_PLATFORM_POSIX) |
| 91 |
nothing calls this directly
no outgoing calls
no test coverage detected