summaryrefslogtreecommitdiff
path: root/Source/Core/AudioCommon/AlsaSoundStream.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/AudioCommon/AlsaSoundStream.cpp')
-rw-r--r--Source/Core/AudioCommon/AlsaSoundStream.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/AudioCommon/AlsaSoundStream.cpp b/Source/Core/AudioCommon/AlsaSoundStream.cpp
index ba4855400f..6eb8d68369 100644
--- a/Source/Core/AudioCommon/AlsaSoundStream.cpp
+++ b/Source/Core/AudioCommon/AlsaSoundStream.cpp
@@ -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;
}