1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-01-12 02:28:11 +02:00

CConnection: use std::static for port conversion

Apperantly boost::lexical on Windows will add commas into output.
This commit is contained in:
Arseniy Shestakov 2017-06-04 16:48:04 +03:00
parent 6642816b1e
commit d84f61fc96

View File

@ -68,7 +68,7 @@ CConnection::CConnection(std::string host, ui16 port, std::string Name)
boost::system::error_code error = asio::error::host_not_found; boost::system::error_code error = asio::error::host_not_found;
socket = new tcp::socket(*io_service); socket = new tcp::socket(*io_service);
tcp::resolver resolver(*io_service); tcp::resolver resolver(*io_service);
tcp::resolver::iterator end, pom, endpoint_iterator = resolver.resolve(tcp::resolver::query(host, boost::lexical_cast<std::string>(port)),error); tcp::resolver::iterator end, pom, endpoint_iterator = resolver.resolve(tcp::resolver::query(host, std::to_string(port)),error);
if(error) if(error)
{ {
logNetwork->errorStream() << "Problem with resolving: \n" << error; logNetwork->errorStream() << "Problem with resolving: \n" << error;