aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorGravatar Sadie Powell2026-05-06 12:45:19 +0100
committerGravatar Sadie Powell2026-05-06 12:45:19 +0100
commitc7acbc05d19315f54ca4eecfe0787ae062885491 (patch)
tree6f6a1dfe129145414034f3a40153001c2da1f8d8 /include
parentMerge branch 'insp4' into master. (diff)
Make CommandBase::Params final.
Diffstat (limited to 'include')
-rw-r--r--include/command.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/command.h b/include/command.h
index 80621c6f2..1d36ef281 100644
--- a/include/command.h
+++ b/include/command.h
@@ -145,7 +145,8 @@ class CoreExport CommandBase
{
public:
/** Encapsulates parameters to a command. */
- class Params : public std::vector<std::string>
+ class Params final
+ : public std::vector<std::string>
{
private:
/* IRCv3 message tags. */