From 72acef4e159df5dcdb93b3c13b2f9d2e5e4c21a9 Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Tue, 23 Jan 2024 13:54:16 +0000 Subject: Mark types that have no inheritors as final. --- modules/commands/help.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/commands/help.cpp') diff --git a/modules/commands/help.cpp b/modules/commands/help.cpp index 3d6dc47c3..66c22a589 100644 --- a/modules/commands/help.cpp +++ b/modules/commands/help.cpp @@ -11,7 +11,7 @@ #include "module.h" -class CommandHelp +class CommandHelp final : public Command { static const unsigned help_wrap_len = 40; @@ -183,7 +183,7 @@ public: } }; -class Help +class Help final : public Module { CommandHelp commandhelp; -- cgit