diff options
| author | Tshepang Mbambo <tshepang@gmail.com> | 2022-08-16 03:46:45 +0200 |
|---|---|---|
| committer | Tshepang Mbambo <tshepang@gmail.com> | 2022-08-16 03:46:45 +0200 |
| commit | 3f379f6df510c2fd5eb5dbb618fde25ea7d03f01 (patch) | |
| tree | d5ee7270ecdbfc07b8f9952b1d82763e0fc9d43e /compiler/rustc_data_structures/src | |
| parent | 40336865fe7d4a01139a3336639c6971647e885c (diff) | |
| download | rust-3f379f6df510c2fd5eb5dbb618fde25ea7d03f01.tar.gz rust-3f379f6df510c2fd5eb5dbb618fde25ea7d03f01.zip | |
needless separation of impl blocks
Diffstat (limited to 'compiler/rustc_data_structures/src')
| -rw-r--r-- | compiler/rustc_data_structures/src/sync.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/compiler/rustc_data_structures/src/sync.rs b/compiler/rustc_data_structures/src/sync.rs index 52952a7932d..258780ecaea 100644 --- a/compiler/rustc_data_structures/src/sync.rs +++ b/compiler/rustc_data_structures/src/sync.rs @@ -56,9 +56,7 @@ cfg_if! { pub fn new(v: T) -> Self { Atomic(Cell::new(v)) } - } - impl<T: Copy> Atomic<T> { #[inline] pub fn into_inner(self) -> T { self.0.into_inner() |
