1
0
mirror of https://github.com/anope/anope.git synced 2026-06-25 09:36:39 +02:00

Fix missing override keywords.

This commit is contained in:
Sadie Powell
2023-03-06 16:11:54 +00:00
parent d210cd2695
commit 29db25dac7
40 changed files with 66 additions and 66 deletions
+2 -2
View File
@@ -99,7 +99,7 @@ class MyHTTPClient : public HTTPClient
Log(LOG_DEBUG, "httpd") << "Accepted connection " << f << " from " << a.addr();
}
~MyHTTPClient()
~MyHTTPClient() override
{
Log(LOG_DEBUG, "httpd") << "Closing connection " << this->GetFD() << " from " << this->ip;
}
@@ -344,7 +344,7 @@ class HTTPD : public Module
}
~HTTPD()
~HTTPD() override
{
for (std::map<int, Socket *>::const_iterator it = SocketEngine::Sockets.begin(), it_end = SocketEngine::Sockets.end(); it != it_end;)
{