Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crossbeam-epoch/src/default.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use crate::collector::{Collector, LocalHandle};
use crate::guard::Guard;
use crate::primitive::thread_local;
#[cfg(not(crossbeam_loom))]
use crate::sync::once_lock::OnceLock;
use std::sync::OnceLock;

fn collector() -> &'static Collector {
#[cfg(not(crossbeam_loom))]
Expand Down
3 changes: 0 additions & 3 deletions crossbeam-epoch/src/sync/mod.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
//! Synchronization primitives.

pub(crate) mod list;
#[cfg(feature = "std")]
#[cfg(not(crossbeam_loom))]
pub(crate) mod once_lock;
pub(crate) mod queue;
1 change: 0 additions & 1 deletion crossbeam-epoch/src/sync/once_lock.rs

This file was deleted.