From 9f35df1ad1599f62f040261fec821b703a3643af Mon Sep 17 00:00:00 2001 From: brain Date: Tue, 14 Nov 2006 18:50:50 +0000 Subject: Inherit ModuleException from std::exception rather than classbase git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5740 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_helpop.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'src/modules/m_helpop.cpp') diff --git a/src/modules/m_helpop.cpp b/src/modules/m_helpop.cpp index f5fce322b..22bd3619b 100644 --- a/src/modules/m_helpop.cpp +++ b/src/modules/m_helpop.cpp @@ -192,6 +192,7 @@ class HelpopException : public ModuleException std::string err; public: HelpopException(std::string message) : err(message) { } + ~HelpopException() throw() { }; virtual const char* GetReason() { return err.c_str(); } }; -- cgit v1.2.3