aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/thread_pool/atomic_cell.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/thread_pool/atomic_cell.rs')
-rw-r--r--src/runtime/thread_pool/atomic_cell.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/runtime/thread_pool/atomic_cell.rs b/src/runtime/thread_pool/atomic_cell.rs
index 2bda0fc..98847e6 100644
--- a/src/runtime/thread_pool/atomic_cell.rs
+++ b/src/runtime/thread_pool/atomic_cell.rs
@@ -22,7 +22,6 @@ impl<T> AtomicCell<T> {
from_raw(old)
}
- #[cfg(feature = "blocking")]
pub(super) fn set(&self, val: Box<T>) {
let _ = self.swap(Some(val));
}