1
0

Socket: removed unused Socket destructor

This commit is contained in:
archshift 2014-07-19 14:50:31 -07:00
parent ed01e12ed7
commit 1831c2e652
2 changed files with 0 additions and 10 deletions

View File

@ -25,15 +25,6 @@ cSocket::cSocket(xSocket a_Socket)
cSocket::~cSocket()
{
// Do NOT close the socket; this class is an API wrapper, not a RAII!
}
cSocket::operator cSocket::xSocket() const
{
return m_Socket;

View File

@ -41,7 +41,6 @@ public:
cSocket(void) : m_Socket(INVALID_SOCKET) {}
cSocket(xSocket a_Socket);
~cSocket();
bool IsValid(void) const { return IsValidSocket(m_Socket); }
void CloseSocket(void);