1
0
mirror of https://github.com/anope/anope.git synced 2026-06-28 21:56:37 +02:00

Mark types that have no inheritors as final.

This commit is contained in:
Sadie Powell
2024-01-23 13:54:16 +00:00
parent a6a0f6c447
commit 72acef4e15
227 changed files with 771 additions and 771 deletions
+6 -6
View File
@@ -20,7 +20,7 @@ static ServiceReference<MemoServService> memoserv("MemoServService", "MemoServ")
static void req_send_memos(Module *me, CommandSource &source, const Anope::string &vIdent, const Anope::string &vHost);
struct HostRequest
struct HostRequest final
: Serializable
{
Anope::string nick;
@@ -64,7 +64,7 @@ struct HostRequest
}
};
class CommandHSRequest
class CommandHSRequest final
: public Command
{
bool isvalidchar(char c)
@@ -187,7 +187,7 @@ public:
}
};
class CommandHSActivate
class CommandHSActivate final
: public Command
{
public:
@@ -237,7 +237,7 @@ public:
}
};
class CommandHSReject
class CommandHSReject final
: public Command
{
public:
@@ -294,7 +294,7 @@ public:
}
};
class CommandHSWaiting
class CommandHSWaiting final
: public Command
{
public:
@@ -353,7 +353,7 @@ public:
}
};
class HSRequest
class HSRequest final
: public Module
{
CommandHSRequest commandhsrequest;