diff options
| author | 2021-10-04 17:07:51 +0100 | |
|---|---|---|
| committer | 2021-10-04 17:39:05 +0100 | |
| commit | dec5875aca7a2e0c281388db2f25d195ad9b2a3d (patch) | |
| tree | 0f8f741801677daa23e7f399282b64ecde137ad0 /src/modules/m_httpd.cpp | |
| parent | Mark all message tag provider classes as final. (diff) | |
| download | inspircd++-dec5875aca7a2e0c281388db2f25d195ad9b2a3d.tar.gz inspircd++-dec5875aca7a2e0c281388db2f25d195ad9b2a3d.tar.bz2 inspircd++-dec5875aca7a2e0c281388db2f25d195ad9b2a3d.zip | |
Apply the final keyword to all module classes where appropriate.
Diffstat (limited to 'src/modules/m_httpd.cpp')
| -rw-r--r-- | src/modules/m_httpd.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/modules/m_httpd.cpp b/src/modules/m_httpd.cpp index 3ead3cd28..149fcf513 100644 --- a/src/modules/m_httpd.cpp +++ b/src/modules/m_httpd.cpp @@ -58,7 +58,10 @@ static http_parser_settings parser_settings; /** A socket used for HTTP transport */ -class HttpServerSocket : public BufferedSocket, public Timer, public insp::intrusive_list_node<HttpServerSocket> +class HttpServerSocket final + : public BufferedSocket + , public Timer + , public insp::intrusive_list_node<HttpServerSocket> { private: friend class ModuleHttpServer; @@ -388,7 +391,8 @@ class HttpServerSocket : public BufferedSocket, public Timer, public insp::intru } }; -class HTTPdAPIImpl : public HTTPdAPIBase +class HTTPdAPIImpl final + : public HTTPdAPIBase { public: HTTPdAPIImpl(Module* parent) |
