MCPcopy Create free account
hub / github.com/BoevaLab/FREEC / ~ThreadPool

Method ~ThreadPool

src/ThreadPool.cpp:153–161  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

151}
152
153ThreadPool::~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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected