1
0
mirror of https://github.com/anope/anope.git synced 2026-07-03 05:13:14 +02:00

Improve the layout of types that inherit from another type.

This commit is contained in:
Sadie Powell
2024-01-23 15:28:23 +00:00
parent 398d674cf4
commit a6a0f6c447
232 changed files with 1648 additions and 798 deletions
+4 -2
View File
@@ -14,7 +14,8 @@
static ServiceReference<Encryption::Provider> md5("Encryption::Provider", "md5");
class OldMD5Provider : public Encryption::Provider
class OldMD5Provider
: public Encryption::Provider
{
public:
OldMD5Provider(Module *creator) : Encryption::Provider(creator, "oldmd5") { }
@@ -34,7 +35,8 @@ public:
}
};
class EOld : public Module
class EOld
: public Module
{
OldMD5Provider oldmd5provider;