mirror of
https://git.suyu.dev/suyu/suyu
synced 2025-01-28 18:46:55 -06:00
Merge pull request #4520 from lioncash/pessimize
async_shaders: Resolve -Wpessimizing-move warning
This commit is contained in:
commit
a91acd5365
@ -34,8 +34,8 @@ void AsyncShaders::AllocateWorkers(std::size_t num_workers) {
|
|||||||
// Create workers
|
// Create workers
|
||||||
for (std::size_t i = 0; i < num_workers; i++) {
|
for (std::size_t i = 0; i < num_workers; i++) {
|
||||||
context_list.push_back(emu_window.CreateSharedContext());
|
context_list.push_back(emu_window.CreateSharedContext());
|
||||||
worker_threads.push_back(std::move(
|
worker_threads.push_back(
|
||||||
std::thread(&AsyncShaders::ShaderCompilerThread, this, context_list[i].get())));
|
std::thread(&AsyncShaders::ShaderCompilerThread, this, context_list[i].get()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user