1
0
mirror of https://github.com/anope/anope.git synced 2026-06-29 05:26:38 +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
@@ -41,7 +41,8 @@ time_t Anope::CurTime = time(NULL);
size_t Anope::CurrentUplink = -1;
class UpdateTimer : public Timer
class UpdateTimer
: public Timer
{
public:
UpdateTimer(time_t timeout) : Timer(timeout, Anope::CurTime, true) { }
@@ -52,7 +53,8 @@ public:
}
};
class ExpireTimer : public Timer
class ExpireTimer
: public Timer
{
public:
ExpireTimer(time_t timeout) : Timer(timeout, Anope::CurTime, true) { }