sigh: default dtor

This commit is contained in:
Michele Caini
2024-05-21 08:18:25 +02:00
parent f9a243b92a
commit a68bb70d43

View File

@@ -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 &>)
: calls{std::move(other.calls), allocator} {}
/*! @brief Default destructor. */
~sigh() noexcept = default;
/**
* @brief Copy assignment operator.
* @param other The instance to copy from.