summaryrefslogtreecommitdiffstats
path: root/tokio/src/sync/mpsc/unbounded.rs
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2019-11-04 22:22:40 -0800
committerGitHub <noreply@github.com>2019-11-04 22:22:40 -0800
commita6253ed05a1e0d14bc64915f5937c29092df9497 (patch)
tree15c96ca9b66e5bca424769e8c715f732feaa1b1c /tokio/src/sync/mpsc/unbounded.rs
parent94f9b04b066cfc3da5c3ee2c961c21a9496135dd (diff)
chore: unify all mocked `loom` files (#1732)
When the crates were merged, each component kept its own `loom` file containing mocked types it needed. This patch unifies them all in one location.
Diffstat (limited to 'tokio/src/sync/mpsc/unbounded.rs')
-rw-r--r--tokio/src/sync/mpsc/unbounded.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tokio/src/sync/mpsc/unbounded.rs b/tokio/src/sync/mpsc/unbounded.rs
index 5a73771e..4eb750ef 100644
--- a/tokio/src/sync/mpsc/unbounded.rs
+++ b/tokio/src/sync/mpsc/unbounded.rs
@@ -1,4 +1,4 @@
-use crate::sync::loom::sync::atomic::AtomicUsize;
+use crate::loom::sync::atomic::AtomicUsize;
use crate::sync::mpsc::chan;
use std::fmt;