Browse Source

basic_sigh_mixin: default dtor

Michele Caini 1 year ago
parent
commit
a530b078d7
1 changed files with 3 additions and 0 deletions
  1. 3 0
      src/entt/entity/mixin.hpp

+ 3 - 0
src/entt/entity/mixin.hpp

@@ -134,6 +134,9 @@ public:
           destruction{std::move(other.destruction), allocator},
           update{std::move(other.update), allocator} {}
 
+    /*! @brief Default destructor. */
+    ~basic_sigh_mixin() noexcept = default;
+
     /**
      * @brief Move assignment operator.
      * @param other The instance to move from.