table: default dtor

This commit is contained in:
Michele Caini
2024-05-21 08:13:21 +02:00
parent 68f3f650eb
commit 9ec4d69b1e

View File

@@ -234,6 +234,9 @@ public:
basic_table(basic_table &&other, const Allocator &allocator) noexcept
: payload{Container{std::move(std::get<Container>(other.payload)), allocator}...} {}
/*! @brief Default destructor. */
~basic_table() noexcept = default;
/**
* @brief Move assignment operator.
* @param other The instance to move from.