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> {
6161 pub ( crate ) liveness_constraints : LivenessValues < RegionVid > ,
6262
6363 /// The outlives constraints computed by the type-check.
64- pub ( crate ) constraints : Frozen < OutlivesConstraintSet < ' tcx > > ,
64+ constraints : Frozen < OutlivesConstraintSet < ' tcx > > ,
6565
6666 /// The constraint-set, but in graph form, making it easy to traverse
6767 /// the constraints adjacent to a particular region. Used to construct
6868 /// the SCC (see `constraint_sccs`) and for error reporting.
69- pub ( crate ) constraint_graph : Frozen < NormalConstraintGraph > ,
69+ constraint_graph : Frozen < NormalConstraintGraph > ,
7070
7171 /// The SCC computed from `constraints` and the constraint
7272 /// 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