From 3f379f6df510c2fd5eb5dbb618fde25ea7d03f01 Mon Sep 17 00:00:00 2001 From: Tshepang Mbambo Date: Tue, 16 Aug 2022 03:46:45 +0200 Subject: [PATCH] needless separation of impl blocks --- compiler/rustc_data_structures/src/sync.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/compiler/rustc_data_structures/src/sync.rs b/compiler/rustc_data_structures/src/sync.rs index 52952a7932dbc..258780ecaea26 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 Atomic { #[inline] pub fn into_inner(self) -> T { self.0.into_inner()