We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e24716 commit f130e69Copy full SHA for f130e69
compiler/rustc_borrowck/src/region_infer/values.rs
@@ -180,8 +180,7 @@ impl LivenessValues {
180
/// live.
181
pub(crate) fn region_value_str(&self, region: RegionVid) -> String {
182
pretty_print_region_elements(
183
- self.live_points(region)
184
- .map(move |p| RegionElement::Location(self.elements.to_location(p))),
+ self.live_points(region).map(|p| RegionElement::Location(self.elements.to_location(p))),
185
)
186
}
187
0 commit comments