diff options
| author | Léo Lam <leo@innovatetechnologi.es> | 2019-05-04 22:50:51 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-05-04 22:50:51 +0200 |
| commit | 99a4ca8de7111c8554b50217744e24bc71912cfe (patch) | |
| tree | 58d53e3d78f2640defa80fd8f71752ac1d3d214c /Source/Core/AudioCommon/PulseAudioStream.cpp | |
| parent | afa46aaf43260039053a45d3f332a525f53621b6 (diff) | |
| parent | c110ffcdaa8b928a984a89cebacd03f5caaace06 (diff) | |
Merge pull request #7839 from ShFil119/impr/redundant
Remove redundant initialization
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 05d08b1603..e480ed9e6e 100644 --- a/Source/Core/AudioCommon/PulseAudioStream.cpp +++ b/Source/Core/AudioCommon/PulseAudioStream.cpp @@ -15,9 +15,7 @@ namespace const size_t BUFFER_SAMPLES = 512; // ~10 ms - needs to be at least 240 for surround } -PulseAudio::PulseAudio() : m_thread(), m_run_thread() -{ -} +PulseAudio::PulseAudio() = default; bool PulseAudio::Init() { |
