| 24 | namespace stream_executor { |
| 25 | |
| 26 | Timer::Timer(StreamExecutor *parent) |
| 27 | : parent_(parent), |
| 28 | implementation_(parent_->implementation()->GetTimerImplementation()) {} |
| 29 | |
| 30 | Timer::~Timer() { parent_->DeallocateTimer(this); } |
| 31 |
nothing calls this directly
no test coverage detected