File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
compiler/rustc_borrowck/src/region_infer Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -61,12 +61,12 @@ pub struct RegionInferenceContext<'tcx> {
61
61
pub ( crate ) liveness_constraints : LivenessValues < RegionVid > ,
62
62
63
63
/// The outlives constraints computed by the type-check.
64
- pub ( crate ) constraints : Frozen < OutlivesConstraintSet < ' tcx > > ,
64
+ constraints : Frozen < OutlivesConstraintSet < ' tcx > > ,
65
65
66
66
/// The constraint-set, but in graph form, making it easy to traverse
67
67
/// the constraints adjacent to a particular region. Used to construct
68
68
/// the SCC (see `constraint_sccs`) and for error reporting.
69
- pub ( crate ) constraint_graph : Frozen < NormalConstraintGraph > ,
69
+ constraint_graph : Frozen < NormalConstraintGraph > ,
70
70
71
71
/// The SCC computed from `constraints` and the constraint
72
72
/// graph. We have an edge from SCC A to SCC B if `A: B`. Used to
You can’t perform that action at this time.
0 commit comments