aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_showfile.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_showfile.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_showfile.cpp')
-rw-r--r--src/modules/m_showfile.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/m_showfile.cpp b/src/modules/m_showfile.cpp
index cb952e127..d2f380809 100644
--- a/src/modules/m_showfile.cpp
+++ b/src/modules/m_showfile.cpp
@@ -47,7 +47,7 @@ class CommandShowFile final
file_cache contents;
Method method;
- public:
+public:
CommandShowFile(Module* parent, const std::string& cmdname)
: Command(parent, cmdname)
{
@@ -101,7 +101,7 @@ class CommandShowFile final
class ModuleShowFile final
: public Module
{
- private:
+private:
std::vector<CommandShowFile*> cmds;
void ReadTag(std::shared_ptr<ConfigTag> tag, std::vector<CommandShowFile*>& newcmds)
@@ -141,7 +141,7 @@ class ModuleShowFile final
newcmds.push_back(sfcmd);
}
- public:
+public:
ModuleShowFile()
: Module(VF_VENDOR, "Adds support for showing the contents of files to users when they execute a command.")
{