mirror of
https://github.com/tokio-rs/tokio.git
synced 2025-10-01 12:20:39 +00:00
chore: reformat some imports for consistency (#2768)
This commit is contained in:
parent
8feebab7cd
commit
71da06097b
@ -1,8 +1,6 @@
|
||||
use crate::loom::{
|
||||
cell::UnsafeCell,
|
||||
sync::atomic::{AtomicPtr, AtomicUsize},
|
||||
thread,
|
||||
};
|
||||
use crate::loom::cell::UnsafeCell;
|
||||
use crate::loom::sync::atomic::{AtomicPtr, AtomicUsize};
|
||||
use crate::loom::thread;
|
||||
|
||||
use std::mem::MaybeUninit;
|
||||
use std::ops;
|
||||
|
@ -1,9 +1,7 @@
|
||||
//! A concurrent, lock-free, FIFO list.
|
||||
|
||||
use crate::loom::{
|
||||
sync::atomic::{AtomicPtr, AtomicUsize},
|
||||
thread,
|
||||
};
|
||||
use crate::loom::sync::atomic::{AtomicPtr, AtomicUsize};
|
||||
use crate::loom::thread;
|
||||
use crate::sync::mpsc::block::{self, Block};
|
||||
|
||||
use std::fmt;
|
||||
|
Loading…
x
Reference in New Issue
Block a user