Replace boost::bind with BIND_TYPE where appropriate

This commit is contained in:
Vinnie Falco
2013-06-28 09:18:17 -07:00
parent 122f1c54e2
commit b0c401bc3f
14 changed files with 60 additions and 32 deletions

View File

@@ -82,7 +82,7 @@ WSDoor* WSDoor::createWSDoor (const std::string& strIp, const int iPort, bool bP
% strIp
% iPort);
wdpResult->mThread = new boost::thread (boost::bind (&WSDoor::startListening, wdpResult));
wdpResult->mThread = new boost::thread (BIND_TYPE (&WSDoor::startListening, wdpResult));
return wdpResult;
}