mirror of
https://github.com/vcmi/vcmi.git
synced 2025-06-17 00:07:41 +02:00
replace boost locks with std
This commit is contained in:
@ -45,7 +45,7 @@ void CThreadHelper::processTasks()
|
||||
{
|
||||
int pom;
|
||||
{
|
||||
boost::unique_lock<boost::mutex> lock(rtinm);
|
||||
std::unique_lock<std::mutex> lock(rtinm);
|
||||
if((pom = currentTask) >= amount)
|
||||
break;
|
||||
else
|
||||
|
Reference in New Issue
Block a user