1
0
mirror of https://github.com/anope/anope.git synced 2026-07-03 22:03:14 +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
+4 -4
View File
@@ -22,7 +22,7 @@ static SeenInfo *FindInfo(const Anope::string &nick);
typedef Anope::hash_map<SeenInfo *> database_map;
database_map database;
struct SeenInfo
struct SeenInfo final
: Serializable
{
Anope::string nick;
@@ -110,7 +110,7 @@ static bool ShouldHide(const Anope::string &channel, User *u)
return false;
}
class CommandOSSeen
class CommandOSSeen final
: public Command
{
public:
@@ -182,7 +182,7 @@ public:
}
};
class CommandSeen
class CommandSeen final
: public Command
{
void SimpleSeen(CommandSource &source, const std::vector<Anope::string> &params)
@@ -371,7 +371,7 @@ public:
}
};
class CSSeen
class CSSeen final
: public Module
{
Serialize::Type seeninfo_type;