Skip to content

Commit

Permalink
fix: missing virtual inheritance for IHandlerModule & INetworkModule
Browse files Browse the repository at this point in the history
  • Loading branch information
Romain-1 authored Mar 6, 2022
1 parent 9dbdbb7 commit d237a35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/ziapi/Module.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class IModule {
* the contents of the response such as a directory listing module, a web
* server module, etc...
*/
class IHandlerModule : public IModule {
class IHandlerModule : virtual public IModule {
public:
virtual ~IHandlerModule() = default;

Expand Down

0 comments on commit d237a35

Please sign in to comment.