mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Replace use of the deprecated mem_fun function with mem_fn.
This commit is contained in:
@ -24,7 +24,7 @@ AlsaSound::~AlsaSound()
|
||||
|
||||
bool AlsaSound::Start()
|
||||
{
|
||||
thread = std::thread(std::mem_fun(&AlsaSound::SoundLoop), this);
|
||||
thread = std::thread(std::mem_fn(&AlsaSound::SoundLoop), this);
|
||||
thread_data = 0;
|
||||
return true;
|
||||
}
|
||||
|
Reference in New Issue
Block a user