From a467fb382dcb19d6b8d1cc93cd4e757265f5bdb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=BCnter=20Obiltschnig?= Date: Mon, 10 Jul 2023 22:08:59 +0200 Subject: [PATCH] #4031: Classes with virtual functions missing virtual destructors (compilation issues) --- Net/include/Poco/Net/PartStore.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Net/include/Poco/Net/PartStore.h b/Net/include/Poco/Net/PartStore.h index a7be187c80..257b254bc3 100644 --- a/Net/include/Poco/Net/PartStore.h +++ b/Net/include/Poco/Net/PartStore.h @@ -87,6 +87,8 @@ class PartStoreFactory { public: virtual PartSource* createPartStore(const std::string& content, const std::string& mediaType, const std::string& filename = "") = 0; + + virtual ~PartStoreFactory() = default; };