1
0
mirror of https://github.com/anope/anope.git synced 2026-07-02 23:23: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
@@ -111,7 +111,7 @@ static const uint32_t sha256_k[64] =
/** An sha256 context
*/
class SHA256Context
class SHA256Context final
: public Encryption::Context
{
void Transform(unsigned char *message, unsigned block_nb)
@@ -217,7 +217,7 @@ public:
}
};
class SHA256Provider
class SHA256Provider final
: public Encryption::Provider
{
public:
@@ -237,7 +237,7 @@ public:
}
};
class ESHA256
class ESHA256 final
: public Module
{
SHA256Provider sha256provider;