From e79895e372c00b1464fb3a28ec0a0b337b660d6f Mon Sep 17 00:00:00 2001 From: lioncash Date: Tue, 1 Apr 2014 12:09:22 -0400 Subject: Replace use of the deprecated mem_fun function with mem_fn. --- Source/Core/AudioCommon/PulseAudioStream.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/Core/AudioCommon/PulseAudioStream.cpp') diff --git a/Source/Core/AudioCommon/PulseAudioStream.cpp b/Source/Core/AudioCommon/PulseAudioStream.cpp index b4d2772709..53bb36a58c 100644 --- a/Source/Core/AudioCommon/PulseAudioStream.cpp +++ b/Source/Core/AudioCommon/PulseAudioStream.cpp @@ -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; } -- cgit v1.2.3