basic_scheduler: default destructor

This commit is contained in:
Michele Caini
2024-05-21 10:21:27 +02:00
parent 54ef3c8850
commit 16b05ad8a0

View File

@@ -18,7 +18,7 @@ namespace internal {
template<typename Delta>
struct basic_process_handler {
virtual ~basic_process_handler() = default;
virtual ~basic_process_handler() noexcept = default;
virtual bool update(const Delta, void *) = 0;
virtual void abort(const bool) = 0;
@@ -126,6 +126,9 @@ public:
ENTT_ASSERT(alloc_traits::is_always_equal::value || get_allocator() == other.get_allocator(), "Copying a scheduler is not allowed");
}
/*! @brief Default destructor. */
~basic_scheduler() noexcept = default;
/**
* @brief Move assignment operator.
* @param other The instance to move from.