diff options
author | Adam <Adam@anope.org> | 2017-04-07 14:39:25 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2017-04-07 14:39:25 -0400 |
commit | c2c8f703b44f7712ea308d8f1f3a4e8c9bcb30c7 (patch) | |
tree | 6d5d9da63198b08a8a1bffecd74540192ede137c /src | |
parent | af48ee6c87ab10a7ffe25d93e2bca688a0c656b0 (diff) | |
parent | dba19d839af717a697ed54ed5da9c27aef76052a (diff) |
Merge commit 'dba19d839af717a697ed54ed5da9c27aef76052a'
Diffstat (limited to 'src')
-rw-r--r-- | src/accessgroup.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/accessgroup.cpp b/src/accessgroup.cpp index a674f4723..a143bede1 100644 --- a/src/accessgroup.cpp +++ b/src/accessgroup.cpp @@ -53,7 +53,7 @@ bool AccessGroup::HasPriv(const Anope::string &priv) return false;
}
-ChanAccess *AccessGroup::Highest()
+ChanAccess *AccessGroup::Highest() const
{
ChanAccess *highest = NULL;
for (unsigned i = 0; i < this->size(); ++i)
@@ -122,4 +122,4 @@ bool AccessGroup::operator>=(AccessGroup &other) bool AccessGroup::operator<=(AccessGroup &other)
{
return !(*this > other);
-}
\ No newline at end of file +}
|