mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-12-16 04:09:39 +00:00
Common/WorkQueueThread: Eliminate superfluous Common namespace specifiers.
This commit is contained in:
parent
4ab64fd83d
commit
25bff5e3c9
@ -135,7 +135,7 @@ private:
|
||||
|
||||
void ThreadLoop(const std::string& thread_name, const FunctionType& function)
|
||||
{
|
||||
Common::SetCurrentThreadName(thread_name.c_str());
|
||||
SetCurrentThreadName(thread_name.c_str());
|
||||
|
||||
while (true)
|
||||
{
|
||||
@ -162,9 +162,9 @@ private:
|
||||
}
|
||||
|
||||
std::thread m_thread;
|
||||
Common::WaitableSPSCQueue<T> m_items;
|
||||
Common::WaitableSPSCQueue<CommandFunction> m_commands;
|
||||
Common::Event m_event;
|
||||
WaitableSPSCQueue<T> m_items;
|
||||
WaitableSPSCQueue<CommandFunction> m_commands;
|
||||
Event m_event;
|
||||
|
||||
using ProducerMutex = std::conditional_t<IsSingleProducer, DummyMutex, std::recursive_mutex>;
|
||||
ProducerMutex m_mutex;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user