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