mirror of
https://github.com/anope/anope.git
synced 2026-07-01 06:16:38 +02:00
Replace anope_{final,override} with their C++11 equivalent.
This commit is contained in:
@@ -16,7 +16,7 @@ class StatusUpdate : public Module
|
||||
|
||||
}
|
||||
|
||||
void OnAccessAdd(ChannelInfo *ci, CommandSource &, ChanAccess *access) anope_override
|
||||
void OnAccessAdd(ChannelInfo *ci, CommandSource &, ChanAccess *access) override
|
||||
{
|
||||
if (ci->c)
|
||||
for (Channel::ChanUserList::iterator it = ci->c->users.begin(), it_end = ci->c->users.end(); it != it_end; ++it)
|
||||
@@ -39,7 +39,7 @@ class StatusUpdate : public Module
|
||||
}
|
||||
}
|
||||
|
||||
void OnAccessDel(ChannelInfo *ci, CommandSource &, ChanAccess *access) anope_override
|
||||
void OnAccessDel(ChannelInfo *ci, CommandSource &, ChanAccess *access) override
|
||||
{
|
||||
if (ci->c)
|
||||
for (Channel::ChanUserList::iterator it = ci->c->users.begin(), it_end = ci->c->users.end(); it != it_end; ++it)
|
||||
|
||||
Reference in New Issue
Block a user