aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_conn_join.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2022-12-01 05:14:58 +0000
committerGravatar Sadie Powell2022-12-01 05:25:01 +0000
commit45e56e5ee1bdb9e169be957e21a4f7b536e417ff (patch)
tree72642028744c278ca476e656933716ac9f7357b8 /src/modules/m_conn_join.cpp
parentMerge branch 'insp3' into master. (diff)
downloadinspircd++-45e56e5ee1bdb9e169be957e21a4f7b536e417ff.tar.gz
inspircd++-45e56e5ee1bdb9e169be957e21a4f7b536e417ff.tar.bz2
inspircd++-45e56e5ee1bdb9e169be957e21a4f7b536e417ff.zip
Yet more stylistic fixes.
Diffstat (limited to 'src/modules/m_conn_join.cpp')
-rw-r--r--src/modules/m_conn_join.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/modules/m_conn_join.cpp b/src/modules/m_conn_join.cpp
index ae23214c6..a76c1cb39 100644
--- a/src/modules/m_conn_join.cpp
+++ b/src/modules/m_conn_join.cpp
@@ -50,7 +50,9 @@ private:
public:
JoinTimer(LocalUser* u, SimpleExtItem<JoinTimer>& ex, const std::string& chans, unsigned int delay)
: Timer(delay, false)
- , user(u), channels(chans), ext(ex)
+ , user(u)
+ , channels(chans)
+ , ext(ex)
{
ServerInstance->Timers.AddTimer(this);
}