File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
src/librustc_mir/borrow_check/nll/region_infer Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -507,9 +507,10 @@ impl<'tcx> RegionInferenceContext<'tcx> {
507
507
self . inferred_values = Some ( inferred_values) ;
508
508
}
509
509
510
- /// Builds up a map from each region variable X to a vector with the indices of constraints that
511
- /// need to be re-evaluated when X changes. These are constraints like Y: X @ P -- so if X
512
- /// changed, we may need to grow Y.
510
+ /// Builds up a map from each region variable X to a vector with the
511
+ /// indices of constraints that need to be re-evaluated when X changes.
512
+ /// These are constraints like Y: X @ P -- so if X changed, we may
513
+ /// need to grow Y.
513
514
fn build_dependency_map ( & self ) -> HashMap < RegionVid , Vec < usize > > {
514
515
let mut map = HashMap :: new ( ) ;
515
516
You can’t perform that action at this time.
0 commit comments