Fix two GCC 11 warnings: Unneeded copies.
std::move created an unneeded copy. iterating without reference also created copies.
This commit is contained in:
parent
420b1f89d3
commit
5a8cd1b118
2 changed files with 3 additions and 3 deletions
|
@ -258,7 +258,7 @@ struct KernelCore::Impl {
|
|||
KAutoObject::Create(thread.get());
|
||||
ASSERT(KThread::InitializeDummyThread(thread.get()).IsSuccess());
|
||||
thread->SetName(fmt::format("DummyThread:{}", GetHostThreadId()));
|
||||
return std::move(thread);
|
||||
return thread;
|
||||
};
|
||||
|
||||
thread_local auto thread = make_thread();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue