about summary refs log tree commit diff
path: root/compiler/rustc_data_structures/src
diff options
context:
space:
mode:
authorTshepang Mbambo <tshepang@gmail.com>2022-08-16 03:46:45 +0200
committerTshepang Mbambo <tshepang@gmail.com>2022-08-16 03:46:45 +0200
commit3f379f6df510c2fd5eb5dbb618fde25ea7d03f01 (patch)
treed5ee7270ecdbfc07b8f9952b1d82763e0fc9d43e /compiler/rustc_data_structures/src
parent40336865fe7d4a01139a3336639c6971647e885c (diff)
downloadrust-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.rs2
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()