diff options
| author | Ryan Houdek <Sonicadvance1@gmail.com> | 2014-09-08 18:01:33 -0500 |
|---|---|---|
| committer | Ryan Houdek <Sonicadvance1@gmail.com> | 2014-09-08 18:01:33 -0500 |
| commit | 859f86ac2db6fe296381ea204493d4a29bea23fa (patch) | |
| tree | b0817cbf8f4060b42910e1b4a611360137e261a3 /Source/Core/AudioCommon/PulseAudioStream.cpp | |
| parent | bf0c4a644bd38e357aa5c4c2eeb7ad1db56cb378 (diff) | |
| parent | 789a500ddc477dcdc809b8f771bbd8176c45ae1e (diff) | |
Merge pull request #1037 from lioncash/mem_fn
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; } |
