Run rustfmt

This commit is contained in:
Oliver Schneider
2017-07-10 10:21:21 +02:00
parent 20d83289ae
commit e80d883bf1
2 changed files with 6 additions and 5 deletions

View File

@@ -306,7 +306,7 @@ declare_lint! {
#[derive(Copy, Clone, Default)]
pub struct Pass {
loop_count : usize,
loop_count: usize,
}
impl LintPass for Pass {
@@ -331,8 +331,10 @@ impl LintPass for Pass {
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for Pass {
fn check_expr_post(&mut self, _: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
match expr.node {
ExprWhile(..) | ExprLoop(..) => { self.loop_count -= 1; }
_ => ()
ExprWhile(..) | ExprLoop(..) => {
self.loop_count -= 1;
},
_ => (),
}
}