Browse Source

sigh: default dtor

Michele Caini 1 year ago
parent
commit
a68bb70d43
1 changed files with 3 additions and 0 deletions
  1. 3 0
      src/entt/signal/sigh.hpp

+ 3 - 0
src/entt/signal/sigh.hpp

@@ -107,6 +107,9 @@ public:
     sigh(sigh &&other, const allocator_type &allocator) noexcept(std::is_nothrow_constructible_v<container_type, container_type &&, const allocator_type &>)
     sigh(sigh &&other, const allocator_type &allocator) noexcept(std::is_nothrow_constructible_v<container_type, container_type &&, const allocator_type &>)
         : calls{std::move(other.calls), allocator} {}
         : calls{std::move(other.calls), allocator} {}
 
 
+    /*! @brief Default destructor. */
+    ~sigh() noexcept = default;
+
     /**
     /**
      * @brief Copy assignment operator.
      * @brief Copy assignment operator.
      * @param other The instance to copy from.
      * @param other The instance to copy from.