Fixed gcc compiler error.
This commit is contained in:
@@ -32,12 +32,12 @@ PokerTHException::PokerTHException(const char *sourcefile, int sourceline, int e
|
||||
m_msg = msgStream.str();
|
||||
}
|
||||
|
||||
PokerTHException::~PokerTHException()
|
||||
PokerTHException::~PokerTHException() throw()
|
||||
{
|
||||
}
|
||||
|
||||
const char *
|
||||
PokerTHException::what() const
|
||||
PokerTHException::what() const throw()
|
||||
{
|
||||
return m_msg.c_str();
|
||||
}
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
#include "localexception.h"
|
||||
|
||||
|
||||
LocalException::~LocalException()
|
||||
LocalException::~LocalException() throw()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
#include <net/clientexception.h>
|
||||
|
||||
|
||||
ClientException::~ClientException()
|
||||
ClientException::~ClientException() throw()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
#include <net/netexception.h>
|
||||
|
||||
|
||||
NetException::~NetException()
|
||||
NetException::~NetException() throw()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
#include <net/serverexception.h>
|
||||
|
||||
|
||||
ServerException::~ServerException()
|
||||
ServerException::~ServerException() throw()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user