summaryrefslogtreecommitdiff
path: root/threading.h
diff options
context:
space:
mode:
Diffstat (limited to 'threading.h')
-rw-r--r--threading.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/threading.h b/threading.h
index 0b11d60..73a1741 100644
--- a/threading.h
+++ b/threading.h
@@ -54,7 +54,7 @@ template<typename T>
void thread_pool<T>::start() {
if (workers.empty()) {
for (typeof(thread_count) i = 0; i < thread_count; ++i) {
- workers.emplace_back(std::thread{[this]() { this->worker_main(); }});
+ workers.emplace_back(std::thread{&thread_pool<T>::worker_main, this});
}
} else {
// TODO