diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-11-14 18:50:50 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-11-14 18:50:50 +0000 |
commit | 9f35df1ad1599f62f040261fec821b703a3643af (patch) | |
tree | 91ec7d3a3f16ac71713d81d3e6c2d28587939e8d /src/modules/m_helpop.cpp | |
parent | 17e639d072b008d9bf6deca20d67f132c2b5c1df (diff) |
Inherit ModuleException from std::exception rather than classbase
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5740 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_helpop.cpp')
-rw-r--r-- | src/modules/m_helpop.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
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(); } }; |