test: implicit noexcept-ness for dtors

This commit is contained in:
Michele Caini
2024-09-16 17:19:05 +02:00
parent 3f8efac37d
commit 57b46385a9
10 changed files with 12 additions and 12 deletions

View File

@@ -10,7 +10,7 @@ struct entity_id final {
constexpr entity_id(entity_type value = null) noexcept
: entt{value} {}
~entity_id() noexcept = default;
~entity_id() = default;
constexpr entity_id(const entity_id &other) = default;
constexpr entity_id(entity_id &&other) noexcept = default;