Fixed gcc compiler error.

This commit is contained in:
lotodore
2007-10-18 21:16:49 +00:00
parent d91c972d3c
commit 3e373be458
5 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -32,12 +32,12 @@ PokerTHException::PokerTHException(const char *sourcefile, int sourceline, int e
m_msg = msgStream.str(); m_msg = msgStream.str();
} }
PokerTHException::~PokerTHException() PokerTHException::~PokerTHException() throw()
{ {
} }
const char * const char *
PokerTHException::what() const PokerTHException::what() const throw()
{ {
return m_msg.c_str(); return m_msg.c_str();
} }
+1 -1
View File
@@ -20,7 +20,7 @@
#include "localexception.h" #include "localexception.h"
LocalException::~LocalException() LocalException::~LocalException() throw()
{ {
} }
+1 -1
View File
@@ -20,7 +20,7 @@
#include <net/clientexception.h> #include <net/clientexception.h>
ClientException::~ClientException() ClientException::~ClientException() throw()
{ {
} }
+1 -1
View File
@@ -20,7 +20,7 @@
#include <net/netexception.h> #include <net/netexception.h>
NetException::~NetException() NetException::~NetException() throw()
{ {
} }
+1 -1
View File
@@ -20,7 +20,7 @@
#include <net/serverexception.h> #include <net/serverexception.h>
ServerException::~ServerException() ServerException::~ServerException() throw()
{ {
} }