1
0
mirror of https://github.com/anope/anope.git synced 2026-06-28 11:46:38 +02:00

Use C++11's explicit override feature if available

This commit is contained in:
Adam
2012-02-18 15:04:26 -05:00
parent 41e8d27602
commit ee5cd8493e
201 changed files with 995 additions and 1003 deletions
+1 -1
View File
@@ -75,7 +75,7 @@ void SocketEngine::AddSocket(Socket *s)
struct kevent *event = GetChangeEvent();
EV_SET(event, s->GetFD(), EVFILT_READ, EV_ADD, 0, 0, NULL);
Sockets.insert(std::make_pair(s->GetFD(), s));
Sockets[s->GetFD()] = s;
}
void SocketEngine::DelSocket(Socket *s)