diff options
| author | Cory Fields <[email protected]> | 2017-07-12 16:48:36 -0400 |
|---|---|---|
| committer | Cory Fields <[email protected]> | 2017-07-17 11:34:38 -0400 |
| commit | 9a1675ee5b27f8634f9917a1f80904c9319739d3 (patch) | |
| tree | bf734d7b8eca833817f3b2ec1790884d8d8507b6 /src/httpserver.cpp | |
| parent | Merge #10831: Batch flushing operations to the walletdb during top up and inc... (diff) | |
| download | discoin-9a1675ee5b27f8634f9917a1f80904c9319739d3.tar.xz discoin-9a1675ee5b27f8634f9917a1f80904c9319739d3.zip | |
optim: mark a few classes final
Diffstat (limited to 'src/httpserver.cpp')
| -rw-r--r-- | src/httpserver.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/httpserver.cpp b/src/httpserver.cpp index 290a2efca..f37b28f71 100644 --- a/src/httpserver.cpp +++ b/src/httpserver.cpp @@ -40,7 +40,7 @@ static const size_t MAX_HEADERS_SIZE = 8192; /** HTTP request work item */ -class HTTPWorkItem : public HTTPClosure +class HTTPWorkItem final : public HTTPClosure { public: HTTPWorkItem(std::unique_ptr<HTTPRequest> _req, const std::string &_path, const HTTPRequestHandler& _func): |