Skip to content

Commit

Permalink
Fix http2server destructor
Browse files Browse the repository at this point in the history
Missed virtual destructor for this base class.

Fixes #11
  • Loading branch information
testillano committed Aug 9, 2022
1 parent e5e1944 commit 7429135
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/ert/http2comm/Http2Server.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ class Http2Server
* @param timerIoService Optional io service to manage response delays
*/
Http2Server(const std::string& name, size_t workerThreads, boost::asio::io_service *timerIoService = nullptr);
~Http2Server();
virtual ~Http2Server();

// setters

Expand Down

0 comments on commit 7429135

Please sign in to comment.