aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_userip.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2022-01-25 13:59:42 +0000
committerGravatar Sadie Powell2022-01-25 14:02:36 +0000
commitd79147e7afe2eca34780c607f78b11f8b3dd017d (patch)
treea3f9a145dd53f9c1c268ac9b521ac907b802eab0 /src/modules/m_userip.cpp
parentFix a few Doxygen comment errors. (diff)
downloadinspircd++-d79147e7afe2eca34780c607f78b11f8b3dd017d.tar.gz
inspircd++-d79147e7afe2eca34780c607f78b11f8b3dd017d.tar.bz2
inspircd++-d79147e7afe2eca34780c607f78b11f8b3dd017d.zip
Abolish the infernal space before accessibility keywords.
Diffstat (limited to 'src/modules/m_userip.cpp')
-rw-r--r--src/modules/m_userip.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/m_userip.cpp b/src/modules/m_userip.cpp
index 86785113c..54535bde1 100644
--- a/src/modules/m_userip.cpp
+++ b/src/modules/m_userip.cpp
@@ -30,7 +30,7 @@
class CommandUserip final
: public Command
{
- public:
+public:
CommandUserip(Module* Creator) : Command(Creator,"USERIP", 1)
{
syntax = { "<nick> [<nick>]+" };
@@ -85,10 +85,10 @@ class ModuleUserIP final
: public Module
, public ISupport::EventListener
{
- private:
+private:
CommandUserip cmd;
- public:
+public:
ModuleUserIP()
: Module(VF_VENDOR, "Adds the /USERIP command which allows users to find out the IP address of one or more connected users.")
, ISupport::EventListener(this)