Skip to content

Commit 3d91929

Browse files
committed
hir: remove an unused type alias
1 parent 5ea0e0d commit 3d91929

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Diff for: src/librustc/hir/mod.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ use syntax_pos::{Span, DUMMY_SP, symbol::InternedString};
2727
use syntax::source_map::{self, Spanned};
2828
use rustc_target::spec::abi::Abi;
2929
use syntax::ast::{self, CrateSugar, Ident, Name, NodeId, DUMMY_NODE_ID, AsmDialect};
30-
use syntax::ast::{Attribute, Lit, StrStyle, FloatTy, IntTy, UintTy, MetaItem};
30+
use syntax::ast::{Attribute, Lit, StrStyle, FloatTy, IntTy, UintTy};
3131
use syntax::attr::InlineAttr;
3232
use syntax::ext::hygiene::SyntaxContext;
3333
use syntax::ptr::P;
@@ -697,8 +697,6 @@ pub struct WhereEqPredicate {
697697
pub rhs_ty: P<Ty>,
698698
}
699699

700-
pub type CrateConfig = HirVec<P<MetaItem>>;
701-
702700
/// The top-level data structure that stores the entire contents of
703701
/// the crate currently being compiled.
704702
///

0 commit comments

Comments
 (0)