aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_cloaking.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2021-10-04 17:07:51 +0100
committerGravatar Sadie Powell2021-10-04 17:39:05 +0100
commitdec5875aca7a2e0c281388db2f25d195ad9b2a3d (patch)
tree0f8f741801677daa23e7f399282b64ecde137ad0 /src/modules/m_cloaking.cpp
parentMark all message tag provider classes as final. (diff)
Apply the final keyword to all module classes where appropriate.
Diffstat (limited to 'src/modules/m_cloaking.cpp')
-rw-r--r--src/modules/m_cloaking.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/modules/m_cloaking.cpp b/src/modules/m_cloaking.cpp
index e9c85e21b..946f4a230 100644
--- a/src/modules/m_cloaking.cpp
+++ b/src/modules/m_cloaking.cpp
@@ -49,7 +49,7 @@ static const char base32[] = "0123456789abcdefghijklmnopqrstuv";
// The minimum length of a cloak key.
static const size_t minkeylen = 30;
-struct CloakInfo
+struct CloakInfo final
{
// The method used for cloaking users.
CloakMode mode;
@@ -82,7 +82,8 @@ struct CloakInfo
typedef std::vector<std::string> CloakList;
-class CloakExtItem : public SimpleExtItem<CloakList>
+class CloakExtItem final
+ : public SimpleExtItem<CloakList>
{
public:
CloakExtItem(Module* Creator)