File tree 2 files changed +0
-12
lines changed
2 files changed +0
-12
lines changed Original file line number Diff line number Diff line change @@ -67,12 +67,6 @@ pub struct FormatArguments {
67
67
names : FxHashMap < Symbol , usize > ,
68
68
}
69
69
70
- // FIXME: Rustdoc has trouble proving Send/Sync for this. See #106930.
71
- #[ cfg( parallel_compiler) ]
72
- unsafe impl Sync for FormatArguments { }
73
- #[ cfg( parallel_compiler) ]
74
- unsafe impl Send for FormatArguments { }
75
-
76
70
impl FormatArguments {
77
71
pub fn new ( ) -> Self {
78
72
Self {
Original file line number Diff line number Diff line change @@ -480,12 +480,6 @@ pub(crate) fn get_auto_trait_and_blanket_impls(
480
480
cx : & mut DocContext < ' _ > ,
481
481
item_def_id : DefId ,
482
482
) -> impl Iterator < Item = Item > {
483
- // FIXME: To be removed once `parallel_compiler` bugs are fixed!
484
- // More information in <https://github.com/rust-lang/rust/pull/106930>.
485
- if cfg ! ( parallel_compiler) {
486
- return vec ! [ ] . into_iter ( ) . chain ( vec ! [ ] . into_iter ( ) ) ;
487
- }
488
-
489
483
let auto_impls = cx
490
484
. sess ( )
491
485
. prof
You can’t perform that action at this time.
0 commit comments