summaryrefslogtreecommitdiff
path: root/src/modules/m_helpop.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-11-14 18:50:50 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-11-14 18:50:50 +0000
commit9f35df1ad1599f62f040261fec821b703a3643af (patch)
tree91ec7d3a3f16ac71713d81d3e6c2d28587939e8d /src/modules/m_helpop.cpp
parent17e639d072b008d9bf6deca20d67f132c2b5c1df (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.cpp1
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(); }
};