| 151 | } |
| 152 | |
| 153 | ThreadPool::~ThreadPool() |
| 154 | { |
| 155 | std::vector<Thread*>::iterator begin = thread_list.begin(); |
| 156 | std::vector<Thread*>::iterator end = thread_list.end(); |
| 157 | while (begin != end) { |
| 158 | delete *begin; |
| 159 | ++begin; |
| 160 | } |
| 161 | } |
| 162 |
nothing calls this directly
no outgoing calls
no test coverage detected