1
0
mirror of https://github.com/anope/anope.git synced 2026-06-28 12:36:39 +02:00

Cleanup some excess whitespaces and tabs, and fix a few typos along the way.

This commit is contained in:
Robby
2017-01-17 05:03:25 +01:00
parent 464093d36e
commit 76ce8ece1a
204 changed files with 442 additions and 550 deletions
+5 -6
View File
@@ -84,7 +84,7 @@ void PrivilegeManager::AddPrivilege(Privilege p)
if (priv.rank > p.rank)
break;
}
Privileges.insert(Privileges.begin() + i, p);
}
@@ -265,7 +265,7 @@ bool ChanAccess::Matches(const User *u, const NickCore *acc, ChannelInfo* &next)
else if (Anope::Match(u->GetDisplayedMask(), this->mask))
return true;
}
if (acc)
{
for (unsigned i = 0; i < acc->aliases->size(); ++i)
@@ -275,12 +275,12 @@ bool ChanAccess::Matches(const User *u, const NickCore *acc, ChannelInfo* &next)
return true;
}
}
if (IRCD->IsChannelValid(this->mask))
{
next = ChannelInfo::Find(this->mask);
}
return false;
}
@@ -313,7 +313,7 @@ bool ChanAccess::operator<(const ChanAccess &other) const
continue;
return !this_p && other_p;
}
}
return false;
}
@@ -473,4 +473,3 @@ bool AccessGroup::operator<=(const AccessGroup &other) const
{
return !(*this > other);
}