diff options
author | Sadie Powell <sadie@witchery.services> | 2023-03-06 16:11:54 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2023-03-13 13:52:56 +0000 |
commit | 29db25dac7aff36b4f7239a9fabd57230534cf35 (patch) | |
tree | 9cc80ab7134514381f02835629ade620584020d0 /modules/m_httpd.cpp | |
parent | d210cd26952a4d4441223809dc259fcf6eaff5fd (diff) |
Fix missing override keywords.
Diffstat (limited to 'modules/m_httpd.cpp')
-rw-r--r-- | modules/m_httpd.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/m_httpd.cpp b/modules/m_httpd.cpp index 97b0ae150..d80da48f4 100644 --- a/modules/m_httpd.cpp +++ b/modules/m_httpd.cpp @@ -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;) { |