@@ -166,7 +166,7 @@ public:
using delta_type = Delta;
/*! @brief Default destructor. */
- virtual ~process() {
+ virtual ~process() ENTT_NOEXCEPT {
static_assert(std::is_base_of_v<process, Derived>, "Incorrect use of the class template");
}
@@ -53,7 +53,7 @@ class scheduler {
};
struct continuation {
- continuation(process_handler *ref)
+ continuation(process_handler *ref) ENTT_NOEXCEPT
: handler{ref} {}
template<typename Proc, typename... Args>