1
0
mirror of https://github.com/anope/anope.git synced 2026-06-29 22:26:38 +02:00

Fixed AccessGroup::operator> fail

This commit is contained in:
Adam
2011-08-19 04:20:11 -04:00
parent abdc69aa94
commit b4f57247b8
+1 -1
View File
@@ -126,7 +126,7 @@ bool AccessGroup::operator>(const AccessGroup &other) const
for (size_t i = CA_SIZE; i > 0; --i)
if (this->HasPriv(static_cast<ChannelAccess>(i - 1)) && !other.HasPriv(static_cast<ChannelAccess>(i - 1)))
return true;
return true;
return false;
}
bool AccessGroup::operator<(const AccessGroup &other) const