mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Replace use of the deprecated mem_fun function with mem_fn.
This commit is contained in:
@ -24,7 +24,7 @@ PulseAudio::PulseAudio(CMixer *mixer)
|
||||
bool PulseAudio::Start()
|
||||
{
|
||||
m_run_thread = true;
|
||||
m_thread = std::thread(std::mem_fun(&PulseAudio::SoundLoop), this);
|
||||
m_thread = std::thread(std::mem_fn(&PulseAudio::SoundLoop), this);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user