File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed
compiler/rustc_data_structures/src Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -246,8 +246,6 @@ cfg_if! {
246
246
247
247
pub type MetadataRef = OwnedSlice ;
248
248
249
- pub use std:: rc:: Rc as Lrc ;
250
- pub use std:: rc:: Weak as Weak ;
251
249
pub use std:: cell:: Ref as ReadGuard ;
252
250
pub use std:: cell:: Ref as MappedReadGuard ;
253
251
pub use std:: cell:: RefMut as WriteGuard ;
@@ -312,9 +310,6 @@ cfg_if! {
312
310
313
311
pub use std:: sync:: atomic:: { AtomicBool , AtomicUsize , AtomicU32 , AtomicU64 } ;
314
312
315
- pub use std:: sync:: Arc as Lrc ;
316
- pub use std:: sync:: Weak as Weak ;
317
-
318
313
pub type MTLockRef <' a, T > = & ' a MTLock <T >;
319
314
320
315
#[ derive( Debug , Default ) ]
@@ -519,6 +514,8 @@ cfg_if! {
519
514
}
520
515
}
521
516
517
+ pub use std:: sync:: Arc as Lrc ;
518
+
522
519
pub unsafe trait DynSend { }
523
520
pub unsafe trait DynSync { }
524
521
You can’t perform that action at this time.
0 commit comments