| 120 | } |
| 121 | |
| 122 | CPUTimer::CPUTimer() { |
| 123 | this->initted_ = true; |
| 124 | this->running_ = false; |
| 125 | this->has_run_at_least_once_ = false; |
| 126 | } |
| 127 | |
| 128 | void CPUTimer::Start() { |
| 129 | if (!running()) { |
nothing calls this directly
no outgoing calls
no test coverage detected