Skip to content

Commit 7510a1b

Browse files
committed
remove an unused struct field
1 parent 0ee5a1a commit 7510a1b

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

compiler/rustc_middle/src/middle/resolve_lifetime.rs

+1-6
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
use crate::ty;
44

5-
use rustc_data_structures::fx::{FxHashMap, FxHashSet};
5+
use rustc_data_structures::fx::FxHashMap;
66
use rustc_hir::def_id::{DefId, LocalDefId};
77
use rustc_hir::ItemLocalId;
88
use rustc_macros::HashStable;
@@ -51,10 +51,5 @@ pub struct ResolveLifetimes {
5151
/// `Region` describing how that region is bound
5252
pub defs: FxHashMap<LocalDefId, FxHashMap<ItemLocalId, Region>>,
5353

54-
/// Set of lifetime def ids that are late-bound; a region can
55-
/// be late-bound if (a) it does NOT appear in a where-clause and
56-
/// (b) it DOES appear in the arguments.
57-
pub late_bound: FxHashMap<LocalDefId, FxHashSet<LocalDefId>>,
58-
5954
pub late_bound_vars: FxHashMap<LocalDefId, FxHashMap<ItemLocalId, Vec<ty::BoundVariableKind>>>,
6055
}

0 commit comments

Comments
 (0)