diff options
| author | 2022-01-25 13:59:42 +0000 | |
|---|---|---|
| committer | 2022-01-25 14:02:36 +0000 | |
| commit | d79147e7afe2eca34780c607f78b11f8b3dd017d (patch) | |
| tree | a3f9a145dd53f9c1c268ac9b521ac907b802eab0 /src/modules/m_rline.cpp | |
| parent | Fix a few Doxygen comment errors. (diff) | |
Abolish the infernal space before accessibility keywords.
Diffstat (limited to 'src/modules/m_rline.cpp')
| -rw-r--r-- | src/modules/m_rline.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/modules/m_rline.cpp b/src/modules/m_rline.cpp index 52789ae06..026acd7fb 100644 --- a/src/modules/m_rline.cpp +++ b/src/modules/m_rline.cpp @@ -37,7 +37,7 @@ static bool added_zline = false; class RLine final : public XLine { - public: +public: RLine(time_t s_time, unsigned long d, const std::string& src, const std::string& re, const std::string& regexs, Regex::EngineReference& rxfactory) : XLine(s_time, d, src, re, "R") , matchtext(regexs) @@ -97,11 +97,11 @@ class RLine final class RLineFactory final : public XLineFactory { - private: +private: const Module* creator; Regex::EngineReference& rxfactory; - public: +public: RLineFactory(const Module* mod, Regex::EngineReference& rx) : XLineFactory("R") , creator(mod) @@ -129,7 +129,7 @@ class CommandRLine final std::string rxengine; RLineFactory& factory; - public: +public: CommandRLine(Module* Creator, RLineFactory& rlf) : Command(Creator,"RLINE", 1, 3), factory(rlf) { access_needed = CmdAccess::OPERATOR; @@ -206,7 +206,7 @@ class ModuleRLine final : public Module , public Stats::EventListener { - private: +private: Regex::EngineReference rxfactory; RLineFactory f; CommandRLine r; @@ -214,7 +214,7 @@ class ModuleRLine final bool initing = true; Regex::Engine* factory; - public: +public: ModuleRLine() : Module(VF_VENDOR | VF_COMMON, "Adds the /RLINE command which allows server operators to prevent users matching a nickname!username@hostname+realname regular expression from connecting to the server.") , Stats::EventListener(this) |
