cargo fmt

Roses are red
Violets are blue
`Add rustfmt to a pre-commit hook` is what I should do.
This commit is contained in:
Philipp Hansch 2019-05-23 07:24:53 +02:00
parent 635a2fa5df
commit edb698105f
No known key found for this signature in database
GPG key ID: 82AA61CAA11397E6

View file

@ -476,9 +476,7 @@ struct BodyLifetimeChecker {
impl<'tcx> Visitor<'tcx> for BodyLifetimeChecker {
// for lifetimes as parameters of generics
fn visit_lifetime(&mut self, lifetime: &'tcx Lifetime) {
if lifetime.name.ident().name != kw::Invalid
&& lifetime.name.ident().name != kw::StaticLifetime
{
if lifetime.name.ident().name != kw::Invalid && lifetime.name.ident().name != kw::StaticLifetime {
self.lifetimes_used_in_body = true;
}
}