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();
}
PokerTHException::~PokerTHException()
PokerTHException::~PokerTHException() throw()
{
}
const char *
PokerTHException::what() const
PokerTHException::what() const throw()
{
return m_msg.c_str();
}