| 25 | using namespace std::literals; |
| 26 | |
| 27 | thread_base::thread_base(const std::string name) : thread_name(name) { |
| 28 | thread_obj = std::make_unique<std::thread>(_thread_run, this); |
| 29 | } |
| 30 | |
| 31 | thread_base::~thread_base() { |
| 32 | finish(); |
nothing calls this directly
no outgoing calls
no test coverage detected