mirror of
https://github.com/momo5502/emulator.git
synced 2026-01-18 11:13:57 +00:00
Fix compilation
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
#include "tcp_client_socket.hpp"
|
||||
|
||||
#include <cassert>
|
||||
|
||||
namespace network
|
||||
{
|
||||
tcp_client_socket::tcp_client_socket(const int af)
|
||||
@@ -7,9 +9,11 @@ namespace network
|
||||
{
|
||||
}
|
||||
|
||||
tcp_client_socket::tcp_client_socket(SOCKET s)
|
||||
tcp_client_socket::tcp_client_socket(SOCKET s, const address& target)
|
||||
: socket(s)
|
||||
{
|
||||
(void)target;
|
||||
assert(this->get_target() == target);
|
||||
}
|
||||
|
||||
tcp_client_socket::~tcp_client_socket()
|
||||
|
||||
Reference in New Issue
Block a user