From 6a075f2402b1b82bed3069efdd28b1d062108e66 Mon Sep 17 00:00:00 2001 From: Martin Brodbeck Date: Mon, 9 Jul 2018 17:50:43 +0200 Subject: [PATCH] remove ctor/dtor --- src/core/entity.cpp | 2 +- src/core/entity.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/entity.cpp b/src/core/entity.cpp index 1368155..517317e 100644 --- a/src/core/entity.cpp +++ b/src/core/entity.cpp @@ -5,7 +5,7 @@ #include #include -Entity::Entity() {} +//Entity::Entity() {} void Entity::createUuid() { diff --git a/src/core/entity.h b/src/core/entity.h index 63f6229..06f53c6 100644 --- a/src/core/entity.h +++ b/src/core/entity.h @@ -8,8 +8,8 @@ class Entity { public: - Entity(); - virtual ~Entity() = 0; + //Entity(); + //ivirtual ~Entity() = 0; const boost::uuids::uuid& getUuid() const { return uuid; }; void createUuid(); void createUuidFromString(const std::string& uuidString);