| 540 | } |
| 541 | |
| 542 | AutoThread::AutoThread() { |
| 543 | if (!ThreadManager::Instance()->CurrentThread()) { |
| 544 | ThreadManager::Instance()->SetCurrentThread(this); |
| 545 | } |
| 546 | } |
| 547 | |
| 548 | AutoThread::~AutoThread() { |
| 549 | Stop(); |
nothing calls this directly
no test coverage detected