| 48 | public: |
| 49 | typedef std::unique_ptr<boost::thread> ThreadHolder; |
| 50 | ScopedThread(boost::thread *t) : m_thread(t) {} |
| 51 | ~ScopedThread() { |
| 52 | if (m_thread) { |
| 53 | m_thread->join(); |
nothing calls this directly
no outgoing calls
no test coverage detected