summaryrefslogtreecommitdiff
path: root/modules/m_sasl.cpp
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2023-03-06 16:11:54 +0000
committerSadie Powell <sadie@witchery.services>2023-03-13 13:52:56 +0000
commit29db25dac7aff36b4f7239a9fabd57230534cf35 (patch)
tree9cc80ab7134514381f02835629ade620584020d0 /modules/m_sasl.cpp
parentd210cd26952a4d4441223809dc259fcf6eaff5fd (diff)
Fix missing override keywords.
Diffstat (limited to 'modules/m_sasl.cpp')
-rw-r--r--modules/m_sasl.cpp4
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;
}