diff options
author | Lioncash <mathew1800@gmail.com> | 2020-09-07 00:47:43 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-09-07 00:47:46 -0400 |
commit | 188a3cf74cba3ad8a19157614d556c134b5ebf47 (patch) | |
tree | 6cb8cee9b6d96088125df954ca3f0fc75544e782 /src | |
parent | 9652973db2c4e60e38afb19e66efc6e30e266600 (diff) |
blocking_worker: Make use of templated lambda
We can simplify this a little by explicitly specifying the typename for
the lambda function.
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/service/sockets/blocking_worker.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/core/hle/service/sockets/blocking_worker.h b/src/core/hle/service/sockets/blocking_worker.h index f2be6ce5c..2d53e52b6 100644 --- a/src/core/hle/service/sockets/blocking_worker.h +++ b/src/core/hle/service/sockets/blocking_worker.h @@ -109,9 +109,8 @@ private: while (keep_running) { work_event.Wait(); - const auto visit_fn = [service, &keep_running](auto&& w) { - using T = std::decay_t<decltype(w)>; - if constexpr (std::is_same_v<T, std::monostate>) { + const auto visit_fn = [service, &keep_running]<typename T>(T&& w) { + if constexpr (std::is_same_v<std::decay_t<T>, std::monostate>) { keep_running = false; } else { w.Execute(service); |