| 67 | T *operator ->() { return &obj; } |
| 68 | private: |
| 69 | static void *thread_main(void *arg) { |
| 70 | thread *p = static_cast<thread *>(arg); |
| 71 | p->obj(); |
| 72 | return 0; |
| 73 | } |
| 74 | private: |
| 75 | T obj; |
| 76 | pthread_t thr; |
nothing calls this directly
no outgoing calls
no test coverage detected