summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeuin <[email protected]>2022-04-17 13:52:38 +0800
committerKeuin <[email protected]>2022-04-17 13:52:38 +0800
commitd3df1a2a93d466e2a6f4552c1a9947fba0f38e14 (patch)
tree06d0d9daace11dd85173dc59d176aa94c4396f81
parent836eab89d8092b313c292db79be2aa450f8a059a (diff)
Remove redundant closure.
-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