diff options
author | Sadie Powell <sadie@witchery.services> | 2023-12-17 13:59:49 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2023-12-17 13:59:49 +0000 |
commit | 6538641e8703084460df70d04196ac271eff1266 (patch) | |
tree | 2bf8ab8fdd0fb4839d86607826bc09c3366e3870 /src | |
parent | eb0e5c89b2a1e59091001ffd0e54582c2ff04212 (diff) |
Remove some unnecessary spaces that break editor indentation.
Diffstat (limited to 'src')
-rw-r--r-- | src/main.cpp | 4 | ||||
-rw-r--r-- | src/modes.cpp | 2 | ||||
-rw-r--r-- | src/uplink.cpp | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/src/main.cpp b/src/main.cpp index e8e1a6a41..f4738b3c1 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -43,7 +43,7 @@ size_t Anope::CurrentUplink = -1; class UpdateTimer : public Timer { - public: +public: UpdateTimer(time_t timeout) : Timer(timeout, Anope::CurTime, true) { } void Tick(time_t) override @@ -54,7 +54,7 @@ class UpdateTimer : public Timer class ExpireTimer : public Timer { - public: +public: ExpireTimer(time_t timeout) : Timer(timeout, Anope::CurTime, true) { } void Tick(time_t) override diff --git a/src/modes.cpp b/src/modes.cpp index 6c46302de..3b0fa57f7 100644 --- a/src/modes.cpp +++ b/src/modes.cpp @@ -302,7 +302,7 @@ void StackerInfo::AddMode(Mode *mode, bool set, const Anope::string ¶m) static class ModePipe : public Pipe { - public: +public: void OnNotify() override { ModeManager::ProcessModes(); diff --git a/src/uplink.cpp b/src/uplink.cpp index 4d49b93d6..d3ddc403b 100644 --- a/src/uplink.cpp +++ b/src/uplink.cpp @@ -19,7 +19,7 @@ UplinkSocket *UplinkSock = NULL; class ReconnectTimer : public Timer { - public: +public: ReconnectTimer(int wait) : Timer(wait) { } void Tick(time_t) override |