1
0
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:
Sadie Powell
2022-01-03 16:50:06 +00:00
parent d76d747196
commit a5f7aac295
202 changed files with 1517 additions and 1528 deletions
+2 -2
View File
@@ -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)