File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
compiler/rustc_expand/src Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ use crate::base::ast::MetaItemInner;
3535use crate :: errors;
3636use crate :: expand:: { self , AstFragment , Invocation } ;
3737use crate :: module:: DirOwnership ;
38+ use crate :: stats:: MacroStat ;
3839
3940// When adding new variants, make sure to
4041// adjust the `visit_*` / `flat_map_*` calls in `InvocationCollector`
@@ -1191,7 +1192,7 @@ pub struct ExtCtxt<'a> {
11911192 /// not to expand it again.
11921193 pub ( super ) expanded_inert_attrs : MarkedAttrs ,
11931194 /// `-Zmacro-stats` data.
1194- pub macro_stats : FxHashMap < ( Symbol , MacroKind ) , crate :: stats :: MacroStat > , // njn: quals
1195+ pub macro_stats : FxHashMap < ( Symbol , MacroKind ) , MacroStat > ,
11951196}
11961197
11971198impl < ' a > ExtCtxt < ' a > {
You can’t perform that action at this time.
0 commit comments