From c101364d4aafe50807cf7c8a831fb66eade3fb7f Mon Sep 17 00:00:00 2001 From: Loek Le Blansch Date: Sat, 12 Oct 2024 17:23:56 +0200 Subject: wip --- backend/Object.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'backend/Object.h') diff --git a/backend/Object.h b/backend/Object.h index 8127f08..789de25 100644 --- a/backend/Object.h +++ b/backend/Object.h @@ -2,11 +2,11 @@ class Object { private: - const char * name; - const char * description; + const char * name = nullptr; + const char * description = nullptr; protected: - Object(); + Object() = default; virtual ~Object(); friend class ObjectFactory; -- cgit v1.2.3