mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-24 02:08:43 +00:00
Replace use of the deprecated mem_fun function with mem_fn.
This commit is contained in:
parent
bad109402e
commit
e79895e372
10 changed files with 11 additions and 11 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue