* @brief Construct a new task with an assigned priority. * * @param task_ The task. * @param priority_ The desired priority. */
| 415 | * @param priority_ The desired priority. |
| 416 | */ |
| 417 | explicit pr_task(task_t&& task_, const priority_t priority_ = 0) noexcept(std::is_nothrow_move_constructible_v<task_t>) : task(std::move(task_)), priority(priority_) {} |
| 418 | |
| 419 | /** |
| 420 | * @brief Compare the priority of two tasks. |
nothing calls this directly
no outgoing calls
no test coverage detected