mirror of
https://github.com/vcmi/vcmi.git
synced 2025-11-27 22:49:25 +02:00
- migrated boost::function/ref/bind to std:: variants
This commit is contained in:
@@ -254,5 +254,5 @@ void CConsoleHandler::end()
|
||||
|
||||
void CConsoleHandler::start()
|
||||
{
|
||||
thread = new boost::thread(boost::bind(&CConsoleHandler::run,console));
|
||||
thread = new boost::thread(std::bind(&CConsoleHandler::run,console));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user