We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da545ce commit 44b6668Copy full SHA for 44b6668
src/librustc_mir/borrow_check/nll/region_infer/mod.rs
@@ -507,9 +507,10 @@ impl<'tcx> RegionInferenceContext<'tcx> {
507
self.inferred_values = Some(inferred_values);
508
}
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.
+ /// Builds up a map from each region variable X to a vector with the
+ /// indices of constraints that need to be re-evaluated when X changes.
+ /// These are constraints like Y: X @ P -- so if X changed, we may
513
+ /// need to grow Y.
514
fn build_dependency_map(&self) -> HashMap<RegionVid, Vec<usize>> {
515
let mut map = HashMap::new();
516
0 commit comments