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 /modules/commands/os_ignore.cpp | |
parent | eb0e5c89b2a1e59091001ffd0e54582c2ff04212 (diff) |
Remove some unnecessary spaces that break editor indentation.
Diffstat (limited to 'modules/commands/os_ignore.cpp')
-rw-r--r-- | modules/commands/os_ignore.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/commands/os_ignore.cpp b/modules/commands/os_ignore.cpp index f779840fb..fea96f92b 100644 --- a/modules/commands/os_ignore.cpp +++ b/modules/commands/os_ignore.cpp @@ -61,7 +61,7 @@ class OSIgnoreService : public IgnoreService { Serialize::Checker<std::vector<IgnoreData *> > ignores; - public: +public: OSIgnoreService(Module *o) : IgnoreService(o), ignores("IgnoreData") { } void AddIgnore(IgnoreData *ign) override @@ -156,7 +156,7 @@ class OSIgnoreService : public IgnoreService class CommandOSIgnore : public Command { - private: +private: Anope::string RealMask(const Anope::string &mask) { /* If it s an existing user, we ignore the hostmask. */ @@ -335,7 +335,7 @@ class CommandOSIgnore : public Command return; } - public: +public: CommandOSIgnore(Module *creator) : Command(creator, "operserv/ignore", 1, 4) { this->SetDesc(_("Modify the services ignore list")); @@ -397,7 +397,7 @@ class OSIgnore : public Module OSIgnoreService osignoreservice; CommandOSIgnore commandosignore; - public: +public: OSIgnore(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, VENDOR), ignoredata_type("IgnoreData", IgnoreDataImpl::Unserialize), osignoreservice(this), commandosignore(this) { |