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

@ -63,7 +63,7 @@ bool AOSound::Start()
{
memset(realtimeBuffer, 0, sizeof(realtimeBuffer));
thread = std::thread(std::mem_fn(&AOSound::SoundLoop), this);
thread = std::thread(std::mem_fun(&AOSound::SoundLoop), this);
return true;
}