fixed: extending std::runtime_error instead, as std::exception ctor is undefined. also fixed some mac warnings from inheriting runtime_error.

This commit is contained in:
Nick Bolton
2014-03-14 20:33:18 +00:00
parent ab529fae41
commit d5b25069be
18 changed files with 68 additions and 41 deletions

View File

@@ -24,7 +24,7 @@
//
XSocketAddress::XSocketAddress(EError error,
const CString& hostname, int port) throw() :
const CString& hostname, int port) _NOEXCEPT :
m_error(error),
m_hostname(hostname),
m_port(port)