1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-10-31 00:07:39 +02:00

Replaced io_service()) with get_io_service(). Fixes bug #780.

This commit is contained in:
Frank Zago
2011-08-04 23:49:32 +00:00
parent 18a376696d
commit 56bf3dc8ab
2 changed files with 6 additions and 6 deletions

View File

@@ -137,7 +137,7 @@ connerror1:
throw std::string("Can't establish connection :(");
}
CConnection::CConnection(TSocket * Socket, std::string Name )
:socket(Socket),io_service(&Socket->io_service()), name(Name)//, send(this), rec(this)
:socket(Socket),io_service(&Socket->get_io_service()), name(Name)//, send(this), rec(this)
{
init();
}