Reformat use
declarations.
The previous commit updated `rustfmt.toml` appropriately. This commit is the outcome of running `x fmt --all` with the new formatting options.
This commit is contained in:
parent
118f9350c5
commit
84ac80f192
1865 changed files with 8367 additions and 9199 deletions
|
@ -27,15 +27,14 @@
|
|||
#![feature(strict_provenance)]
|
||||
// tidy-alphabetical-end
|
||||
|
||||
use smallvec::SmallVec;
|
||||
|
||||
use std::alloc::Layout;
|
||||
use std::cell::{Cell, RefCell};
|
||||
use std::marker::PhantomData;
|
||||
use std::mem::{self, MaybeUninit};
|
||||
use std::ptr::{self, NonNull};
|
||||
use std::slice;
|
||||
use std::{cmp, intrinsics};
|
||||
use std::{cmp, intrinsics, slice};
|
||||
|
||||
use smallvec::SmallVec;
|
||||
|
||||
/// This calls the passed function while ensuring it won't be inlined into the caller.
|
||||
#[inline(never)]
|
||||
|
|
|
@ -1,8 +1,10 @@
|
|||
extern crate test;
|
||||
use super::TypedArena;
|
||||
use std::cell::Cell;
|
||||
|
||||
use test::Bencher;
|
||||
|
||||
use super::TypedArena;
|
||||
|
||||
#[allow(dead_code)]
|
||||
#[derive(Debug, Eq, PartialEq)]
|
||||
struct Point {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue