Skip to content

Commit f130e69

Browse files
committed
fixup! rename debugging support functions
1 parent 3e24716 commit f130e69

File tree

1 file changed

+1
-2
lines changed
  • compiler/rustc_borrowck/src/region_infer

1 file changed

+1
-2
lines changed

compiler/rustc_borrowck/src/region_infer/values.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -180,8 +180,7 @@ impl LivenessValues {
180180
/// live.
181181
pub(crate) fn region_value_str(&self, region: RegionVid) -> String {
182182
pretty_print_region_elements(
183-
self.live_points(region)
184-
.map(move |p| RegionElement::Location(self.elements.to_location(p))),
183+
self.live_points(region).map(|p| RegionElement::Location(self.elements.to_location(p))),
185184
)
186185
}
187186

0 commit comments

Comments
 (0)