| 99 | } |
| 100 | |
| 101 | TFormattedPrecisionTimer::~TFormattedPrecisionTimer() { |
| 102 | const ui64 end = GetCycleCount(); |
| 103 | const ui64 diff = end - Start; |
| 104 | |
| 105 | *Out << Message << ": " << diff << " ticks " << FormatCycles(diff) << Endl; |
| 106 | } |
| 107 | |
| 108 | TFuncTimer::TFuncTimer(const char* func) |
| 109 | : Start_(TInstant::Now()) |
nothing calls this directly
no test coverage detected