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

Remove the now parameter from the Timer class.

This was never actually changed from the default.
This commit is contained in:
Sadie Powell
2024-02-11 17:53:32 +00:00
parent 5337326cc9
commit 30b9f12711
15 changed files with 89 additions and 44 deletions
+4 -1
View File
@@ -21,7 +21,10 @@ class ReconnectTimer final
: public Timer
{
public:
ReconnectTimer(int wait) : Timer(wait) { }
ReconnectTimer(int wait)
: Timer(wait)
{
}
void Tick(time_t) override
{