From 990b99f0511534538b351fe855c772f1d505e0ef Mon Sep 17 00:00:00 2001 From: lotodore Date: Thu, 18 Oct 2007 21:07:55 +0000 Subject: [PATCH] Fixed gcc compiler error. --- src/core/pokerthexception.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/pokerthexception.h b/src/core/pokerthexception.h index 5a6c74b3..803788f7 100644 --- a/src/core/pokerthexception.h +++ b/src/core/pokerthexception.h @@ -29,7 +29,7 @@ class PokerTHException : public std::exception public: PokerTHException(const char *sourcefile, int sourceline, int errorId, int osErrorCode); - virtual ~PokerTHException(); + virtual ~PokerTHException() throw(); int GetErrorId() const {return m_errorId;} int GetOsErrorCode() const {return m_osErrorCode;}