1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-07-03 00:46:55 +02:00

Use boost::asio::post instead of deprecated io_service::post

This commit is contained in:
Ivan Savenko
2025-02-13 21:36:24 +00:00
parent 4c74346508
commit b1ae36bdff
2 changed files with 3 additions and 3 deletions

View File

@ -79,7 +79,7 @@ void NetworkHandler::createInternalConnection(INetworkClientListener & listener,
server.receiveInternalConnection(localConnection);
io->post([&listener, localConnection](){
boost::asio::post(*io, [&listener, localConnection](){
listener.onConnectionEstablished(localConnection);
});
}