| 11 | { |
| 12 | |
| 13 | system_timer::system_timer(const cobalt::executor & executor) : timer_(executor) {} |
| 14 | system_timer::system_timer(const time_point &expiry_time, const cobalt::executor & executor) : timer_(executor, expiry_time) {} |
| 15 | system_timer::system_timer(const duration &expiry_time, const cobalt::executor & executor) : timer_(executor, expiry_time) {} |
| 16 |
nothing calls this directly
no outgoing calls
no test coverage detected