summaryrefslogtreecommitdiff
path: root/modules/commands/cs_updown.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/commands/cs_updown.cpp')
-rw-r--r--modules/commands/cs_updown.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/commands/cs_updown.cpp b/modules/commands/cs_updown.cpp
index 90bb882e2..24242a0c3 100644
--- a/modules/commands/cs_updown.cpp
+++ b/modules/commands/cs_updown.cpp
@@ -11,7 +11,7 @@
#include "module.h"
-class CommandCSUp
+class CommandCSUp final
: public Command
{
void SetModes(User *u, Channel *c)
@@ -130,7 +130,7 @@ public:
}
};
-class CommandCSDown
+class CommandCSDown final
: public Command
{
void RemoveAll(User *u, Channel *c)
@@ -228,7 +228,7 @@ public:
}
};
-class CSUpDown
+class CSUpDown final
: public Module
{
CommandCSUp commandcsup;