From dd9b9f53ca26d11862e7a42356bb43e2b79a0a00 Mon Sep 17 00:00:00 2001 From: ds Date: Thu, 5 Nov 2020 16:46:22 +0300 Subject: [PATCH] fix build #2 [skip ci] --- inc/module.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/inc/module.h b/inc/module.h index 3380fc9..249ab3f 100644 --- a/inc/module.h +++ b/inc/module.h @@ -12,6 +12,9 @@ constexpr int kYaPBModuleVersion = 1; // basic module interface, if you need to additional stuff, please post an issue class IYaPBModule { +public: + virtual ~IYaPBModule () = default; + public: // get the bot version string virtual const char *getBotVersion () = 0;