1
0
mirror of https://github.com/anope/anope.git synced 2026-07-02 14:13:12 +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
+3 -3
View File
@@ -54,7 +54,7 @@ static const uint32_t sha1_iv[5] =
0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0
};
class SHA1Context
class SHA1Context final
: public Encryption::Context
{
uint32_t state[5];
@@ -179,7 +179,7 @@ public:
}
};
class SHA1Provider
class SHA1Provider final
: public Encryption::Provider
{
public:
@@ -199,7 +199,7 @@ public:
}
};
class ESHA1
class ESHA1 final
: public Module
{
SHA1Provider sha1provider;