mirror of
https://github.com/anope/anope.git
synced 2026-06-29 09:16:38 +02:00
Use C++11's explicit override feature if available
This commit is contained in:
@@ -52,7 +52,7 @@ void SocketEngine::AddSocket(Socket *s)
|
||||
if (s->GetFD() > MaxFD)
|
||||
MaxFD = s->GetFD();
|
||||
FD_SET(s->GetFD(), &ReadFDs);
|
||||
Sockets.insert(std::make_pair(s->GetFD(), s));
|
||||
Sockets[s->GetFD()] = s;
|
||||
++FDCount;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user