diff options
| author | 2026-05-06 12:45:19 +0100 | |
|---|---|---|
| committer | 2026-05-06 12:45:19 +0100 | |
| commit | c7acbc05d19315f54ca4eecfe0787ae062885491 (patch) | |
| tree | 6f6a1dfe129145414034f3a40153001c2da1f8d8 /include | |
| parent | Merge branch 'insp4' into master. (diff) | |
Make CommandBase::Params final.
Diffstat (limited to 'include')
| -rw-r--r-- | include/command.h | 3 |
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. */ |
