@@ -91,7 +91,7 @@ pub struct Session {
91
91
/// in order to avoid redundantly verbose output (Issue #24690, #44953).
92
92
pub one_time_diagnostics : RefCell < FxHashSet < ( DiagnosticMessageId , Option < Span > , String ) > > ,
93
93
pub plugin_llvm_passes : OneThread < RefCell < Vec < String > > > ,
94
- pub plugin_attributes : RefCell < Vec < ( String , AttributeType ) > > ,
94
+ pub plugin_attributes : OneThread < RefCell < Vec < ( String , AttributeType ) > > > ,
95
95
pub crate_types : RefCell < Vec < config:: CrateType > > ,
96
96
pub dependency_formats : RefCell < dependency_format:: Dependencies > ,
97
97
/// The crate_disambiguator is constructed out of all the `-C metadata`
@@ -1095,7 +1095,7 @@ pub fn build_session_(
1095
1095
buffered_lints : OneThread :: new ( RefCell :: new ( Some ( lint:: LintBuffer :: new ( ) ) ) ) ,
1096
1096
one_time_diagnostics : RefCell :: new ( FxHashSet ( ) ) ,
1097
1097
plugin_llvm_passes : OneThread :: new ( RefCell :: new ( Vec :: new ( ) ) ) ,
1098
- plugin_attributes : RefCell :: new ( Vec :: new ( ) ) ,
1098
+ plugin_attributes : OneThread :: new ( RefCell :: new ( Vec :: new ( ) ) ) ,
1099
1099
crate_types : RefCell :: new ( Vec :: new ( ) ) ,
1100
1100
dependency_formats : RefCell :: new ( FxHashMap ( ) ) ,
1101
1101
crate_disambiguator : Once :: new ( ) ,
0 commit comments