1
0
mirror of https://github.com/anope/anope.git synced 2026-07-07 23:03:13 +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
@@ -19,7 +19,7 @@ static Serialize::Checker<std::vector<DNSServer *> > dns_servers("DNSServer");
static std::map<Anope::string, std::list<time_t> > server_quit_times;
struct DNSZone
struct DNSZone final
: Serializable
{
Anope::string name;
@@ -87,7 +87,7 @@ struct DNSZone
}
};
class DNSServer
class DNSServer final
: public Serializable
{
Anope::string server_name;
@@ -206,7 +206,7 @@ public:
}
};
class CommandOSDNS
class CommandOSDNS final
: public Command
{
void DisplayPoolState(CommandSource &source)
@@ -719,7 +719,7 @@ public:
}
};
class ModuleDNS
class ModuleDNS final
: public Module
{
Serialize::Type zone_type, dns_type;