mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-06-03 06:24:48 -04:00
activated compiler warnings
This commit is contained in:
@@ -62,14 +62,14 @@ CSocket::CSocket( int sockDesc )
|
||||
m_sockDesc = sockDesc;
|
||||
}
|
||||
|
||||
CSocket::CSocket( const CSocket &sock )
|
||||
CSocket::CSocket(const CSocket &sock)
|
||||
{
|
||||
|
||||
m_sockDesc = sock.m_sockDesc;
|
||||
}
|
||||
|
||||
void CSocket::operator=( const CSocket &sock )
|
||||
void CSocket::operator=(const CSocket &sock)
|
||||
{
|
||||
|
||||
m_sockDesc = sock.m_sockDesc;
|
||||
}
|
||||
|
||||
std::string CSocket::GetLocalAddress() throw(CSocketException)
|
||||
|
||||
Reference in New Issue
Block a user