summaryrefslogtreecommitdiff
path: root/Source/Core/AudioCommon/AOSoundStream.cpp
diff options
context:
space:
mode:
authorlioncash <mathew1800@gmail.com>2014-04-01 12:09:22 -0400
committerlioncash <mathew1800@gmail.com>2014-04-01 12:09:22 -0400
commite79895e372c00b1464fb3a28ec0a0b337b660d6f (patch)
tree78927d8907b413ae25d8aa4f9d613e9235b0fa7c /Source/Core/AudioCommon/AOSoundStream.cpp
parentbad109402e0b938156bce84e1aed6e39111a6e06 (diff)
Replace use of the deprecated mem_fun function with mem_fn.
Diffstat (limited to 'Source/Core/AudioCommon/AOSoundStream.cpp')
-rw-r--r--Source/Core/AudioCommon/AOSoundStream.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/AudioCommon/AOSoundStream.cpp b/Source/Core/AudioCommon/AOSoundStream.cpp
index 20ec4261c2..f2d7622d1d 100644
--- a/Source/Core/AudioCommon/AOSoundStream.cpp
+++ b/Source/Core/AudioCommon/AOSoundStream.cpp
@@ -50,7 +50,7 @@ bool AOSound::Start()
{
memset(realtimeBuffer, 0, sizeof(realtimeBuffer));
- thread = std::thread(std::mem_fun(&AOSound::SoundLoop), this);
+ thread = std::thread(std::mem_fn(&AOSound::SoundLoop), this);
return true;
}