sparse_set: cleanup

This commit is contained in:
Michele Caini
2024-05-24 09:23:44 +02:00
parent d9a3990f03
commit 88828d2eb5

View File

@@ -440,7 +440,7 @@ public:
* @param other The instance to move from.
* @param allocator The allocator to use.
*/
basic_sparse_set(basic_sparse_set &&other, const allocator_type &allocator) noexcept
basic_sparse_set(basic_sparse_set &&other, const allocator_type &allocator)
: sparse{std::move(other.sparse), allocator},
packed{std::move(other.packed), allocator},
info{other.info},