mirror of
https://github.com/debauchee/barrier.git
synced 2026-05-08 14:41:57 +08:00
removed exception specifications. thread exceptions weren't
being listed and they'd have to be added to every one. just doesn't seem worth the trouble.
This commit is contained in:
@@ -16,12 +16,12 @@ CTCPSocketFactory::~CTCPSocketFactory()
|
||||
// do nothing
|
||||
}
|
||||
|
||||
ISocket* CTCPSocketFactory::create() const throw(XSocket)
|
||||
ISocket* CTCPSocketFactory::create() const
|
||||
{
|
||||
return new CTCPSocket;
|
||||
}
|
||||
|
||||
IListenSocket* CTCPSocketFactory::createListen() const throw(XSocket)
|
||||
IListenSocket* CTCPSocketFactory::createListen() const
|
||||
{
|
||||
return new CTCPListenSocket;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user