From 5d681e71f5804119f0d4e36e453d54b781cf002e Mon Sep 17 00:00:00 2001 From: Andrea Gilardoni Date: Wed, 5 Feb 2025 15:03:03 +0100 Subject: [PATCH] Adding missing virtual destructor to Property --- src/property/Property.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/property/Property.h b/src/property/Property.h index 71a8447c9..7fc1ac846 100644 --- a/src/property/Property.h +++ b/src/property/Property.h @@ -142,6 +142,7 @@ class Property { public: Property(); + virtual ~Property() {} void init(String const name, Permission const permission, GetTimeCallbackFunc func); /* Composable configuration of the Property class */