Revert "mem_fun -> mem_fn."

This reverts commit b7d32b0a3d.

OSX C++ std library in charge of holding back progress (as usual).
This commit is contained in:
Lioncash
2013-01-23 23:38:49 -05:00
parent b7d32b0a3d
commit fe7e691d77
8 changed files with 9 additions and 11 deletions

View File

@ -134,7 +134,7 @@ UDPWiimote::UDPWiimote(const char *_port, const char * name, int _index) :
initBroadcastIPv6();
std::lock_guard<std::mutex> lk(d->termLock);
d->thread = std::thread(std::mem_fn(&UDPWiimote::mainThread), this);
d->thread = std::thread(std::mem_fun(&UDPWiimote::mainThread), this);
return;
}