mirror of
https://github.com/vcmi/vcmi.git
synced 2025-06-17 00:07:41 +02:00
Removed usage of boost::thread from vcmi, except for AI
This commit is contained in:
@ -28,7 +28,7 @@ std::string getThreadName()
|
||||
if (!threadNameForLogging.empty())
|
||||
return threadNameForLogging;
|
||||
|
||||
return boost::lexical_cast<std::string>(boost::this_thread::get_id());
|
||||
return boost::lexical_cast<std::string>(std::this_thread::get_id());
|
||||
}
|
||||
|
||||
void setThreadNameLoggingOnly(const std::string &name)
|
||||
|
Reference in New Issue
Block a user