Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/stdx/src/thread.rs')
-rw-r--r--crates/stdx/src/thread.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/crates/stdx/src/thread.rs b/crates/stdx/src/thread.rs
index 8630961f85..478e23ca7d 100644
--- a/crates/stdx/src/thread.rs
+++ b/crates/stdx/src/thread.rs
@@ -155,8 +155,6 @@ pub enum QoSClass {
/// performance, responsiveness and efficiency.
Utility,
- Default,
-
/// TLDR: tasks that block using your app
///
/// Contract:
@@ -234,7 +232,6 @@ mod imp {
let c = match class {
QoSClass::UserInteractive => libc::qos_class_t::QOS_CLASS_USER_INTERACTIVE,
QoSClass::UserInitiated => libc::qos_class_t::QOS_CLASS_USER_INITIATED,
- QoSClass::Default => libc::qos_class_t::QOS_CLASS_DEFAULT,
QoSClass::Utility => libc::qos_class_t::QOS_CLASS_UTILITY,
QoSClass::Background => libc::qos_class_t::QOS_CLASS_BACKGROUND,
};