mirror of
				https://github.com/vcmi/vcmi.git
				synced 2025-10-31 00:07:39 +02:00 
			
		
		
		
	boost 1.87
This commit is contained in:
		| @@ -199,7 +199,11 @@ void NetworkConnection::close() | ||||
| { | ||||
| 	boost::system::error_code ec; | ||||
| 	socket->close(ec); | ||||
| #if BOOST_VERSION >= 108700 | ||||
| 	timer->cancel(); | ||||
| #else | ||||
| 	timer->cancel(ec); | ||||
| #endif | ||||
|  | ||||
| 	//NOTE: ignoring error code, intended | ||||
| } | ||||
|   | ||||
| @@ -15,7 +15,11 @@ | ||||
|  | ||||
| VCMI_LIB_NAMESPACE_BEGIN | ||||
|  | ||||
| #if BOOST_VERSION >= 108700 | ||||
| using NetworkContext = boost::asio::io_context; | ||||
| #else | ||||
| using NetworkContext = boost::asio::io_service; | ||||
| #endif | ||||
| using NetworkSocket = boost::asio::ip::tcp::socket; | ||||
| using NetworkAcceptor = boost::asio::ip::tcp::acceptor; | ||||
| using NetworkBuffer = boost::asio::streambuf; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user