|
@@ -18,7 +18,7 @@ namespace internal {
|
|
|
|
|
|
|
|
template<typename Delta>
|
|
template<typename Delta>
|
|
|
struct basic_process_handler {
|
|
struct basic_process_handler {
|
|
|
- virtual ~basic_process_handler() = default;
|
|
|
|
|
|
|
+ virtual ~basic_process_handler() noexcept = default;
|
|
|
|
|
|
|
|
virtual bool update(const Delta, void *) = 0;
|
|
virtual bool update(const Delta, void *) = 0;
|
|
|
virtual void abort(const bool) = 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");
|
|
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.
|
|
* @brief Move assignment operator.
|
|
|
* @param other The instance to move from.
|
|
* @param other The instance to move from.
|