diff options
| author | Lioncash <mathew1800@gmail.com> | 2014-09-08 13:39:51 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2014-09-08 13:41:02 -0400 |
| commit | 789a500ddc477dcdc809b8f771bbd8176c45ae1e (patch) | |
| tree | 56a0913b74fe3da108c842dc3756c58a5d23d891 /Source/Core/AudioCommon/PulseAudioStream.cpp | |
| parent | 4c9a2c6e2283dbf2772ff9bba1030ee961f68ccc (diff) | |
AudioCommon: Remove unnecessary usages of mem_fn
Diffstat (limited to 'Source/Core/AudioCommon/PulseAudioStream.cpp')
| -rw-r--r-- | Source/Core/AudioCommon/PulseAudioStream.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Source/Core/AudioCommon/PulseAudioStream.cpp b/Source/Core/AudioCommon/PulseAudioStream.cpp index 03aefe30f0..22559feb41 100644 --- a/Source/Core/AudioCommon/PulseAudioStream.cpp +++ b/Source/Core/AudioCommon/PulseAudioStream.cpp @@ -2,8 +2,6 @@ // Licensed under GPLv2 // Refer to the license.txt file included. -#include <functional> - #include "AudioCommon/PulseAudioStream.h" #include "Common/Common.h" #include "Common/Thread.h" @@ -25,7 +23,7 @@ PulseAudio::PulseAudio(CMixer *mixer) bool PulseAudio::Start() { m_run_thread = true; - m_thread = std::thread(std::mem_fn(&PulseAudio::SoundLoop), this); + m_thread = std::thread(&PulseAudio::SoundLoop, this); return true; } |
