summaryrefslogtreecommitdiff
path: root/modules/m_sasl.cpp
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2024-01-23 13:54:16 +0000
committerSadie Powell <sadie@witchery.services>2024-01-23 16:53:06 +0000
commit72acef4e159df5dcdb93b3c13b2f9d2e5e4c21a9 (patch)
treefc0a965612b45478e3b6f1566641df12790a818d /modules/m_sasl.cpp
parenta6a0f6c44780c839b2269f4f29a26ecfdbd95544 (diff)
Mark types that have no inheritors as final.
Diffstat (limited to 'modules/m_sasl.cpp')
-rw-r--r--modules/m_sasl.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/modules/m_sasl.cpp b/modules/m_sasl.cpp
index a90a70e67..298ad0e75 100644
--- a/modules/m_sasl.cpp
+++ b/modules/m_sasl.cpp
@@ -12,7 +12,7 @@
using namespace SASL;
-class Plain
+class Plain final
: public Mechanism
{
public:
@@ -73,12 +73,12 @@ public:
}
};
-class External
+class External final
: public Mechanism
{
ServiceReference<CertService> certs;
- struct Session
+ struct Session final
: SASL::Session
{
Anope::string cert;
@@ -137,7 +137,7 @@ public:
}
};
-class Anonymous
+class Anonymous final
: public Mechanism
{
public:
@@ -174,7 +174,7 @@ public:
}
};
-class SASLService
+class SASLService final
: public SASL::Service
, public Timer
{
@@ -353,7 +353,7 @@ public:
}
};
-class ModuleSASL
+class ModuleSASL final
: public Module
{
SASLService sasl;