diff options
| author | 2021-07-09 13:59:09 -0400 | |
|---|---|---|
| committer | 2021-07-22 21:51:21 -0400 | |
| commit | 75059c46d645e42e8da31fb97d003047c67b004b (patch) | |
| tree | 75cec577b1cd996e2dde848c0426938286dff201 /src | |
| parent | Merge pull request #6686 from ReinUsesLisp/vk-optimal-copy (diff) | |
| download | yuzu-75059c46d645e42e8da31fb97d003047c67b004b.tar.gz yuzu-75059c46d645e42e8da31fb97d003047c67b004b.tar.xz yuzu-75059c46d645e42e8da31fb97d003047c67b004b.zip | |
thread_worker: Fix compile time error
state is unused in the branch where with_state is false
Diffstat (limited to 'src')
| -rw-r--r-- | src/common/thread_worker.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/thread_worker.h b/src/common/thread_worker.h index 8272985ff..0a975a869 100644 --- a/src/common/thread_worker.h +++ b/src/common/thread_worker.h | |||
| @@ -39,7 +39,7 @@ public: | |||
| 39 | const auto lambda = [this, func](std::stop_token stop_token) { | 39 | const auto lambda = [this, func](std::stop_token stop_token) { |
| 40 | Common::SetCurrentThreadName(thread_name.c_str()); | 40 | Common::SetCurrentThreadName(thread_name.c_str()); |
| 41 | { | 41 | { |
| 42 | std::conditional_t<with_state, StateType, int> state{func()}; | 42 | [[maybe_unused]] std::conditional_t<with_state, StateType, int> state{func()}; |
| 43 | while (!stop_token.stop_requested()) { | 43 | while (!stop_token.stop_requested()) { |
| 44 | Task task; | 44 | Task task; |
| 45 | { | 45 | { |