summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon
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/InputCommon
parentbad109402e0b938156bce84e1aed6e39111a6e06 (diff)
Replace use of the deprecated mem_fun function with mem_fn.
Diffstat (limited to 'Source/Core/InputCommon')
-rw-r--r--Source/Core/InputCommon/UDPWiimote.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/InputCommon/UDPWiimote.cpp b/Source/Core/InputCommon/UDPWiimote.cpp
index 00023d66c3..e929e62461 100644
--- a/Source/Core/InputCommon/UDPWiimote.cpp
+++ b/Source/Core/InputCommon/UDPWiimote.cpp
@@ -146,7 +146,7 @@ UDPWiimote::UDPWiimote(const std::string& _port, const std::string& name, int _i
initBroadcastIPv6();
std::lock_guard<std::mutex> lk(d->termLock);
- d->thread = std::thread(std::mem_fun(&UDPWiimote::mainThread), this);
+ d->thread = std::thread(std::mem_fn(&UDPWiimote::mainThread), this);
return;
}