diff options
Diffstat (limited to 'modules/m_sasl.cpp')
-rw-r--r-- | modules/m_sasl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/m_sasl.cpp b/modules/m_sasl.cpp index 53cc070cd..dbad95926 100644 --- a/modules/m_sasl.cpp +++ b/modules/m_sasl.cpp @@ -131,7 +131,7 @@ class SASLService : public SASL::Service, public Timer public: SASLService(Module *o) : SASL::Service(o), Timer(o, 60, Anope::CurTime, true) { } - ~SASLService() + ~SASLService() override { for (std::map<Anope::string, Session *>::iterator it = sessions.begin(); it != sessions.end(); it++) delete it->second; @@ -332,7 +332,7 @@ class ModuleSASL : public Module catch (ModuleException &) { } } - ~ModuleSASL() + ~ModuleSASL() override { delete external; } |