1
Fork 0

Remove a few unnecessary rustfmt_skips

This commit is contained in:
Nick Cameron 2015-09-15 11:42:54 +12:00
parent 99ffb5af99
commit a29023a191
3 changed files with 3 additions and 19 deletions

View file

@ -128,9 +128,6 @@ impl Rewrite for ast::Expr {
ast::Expr_::ExprAssignOp(ref op, ref lhs, ref rhs) => {
rewrite_assignment(context, lhs, rhs, Some(op), width, offset)
}
// FIXME #184 Note that this formatting is broken due to a bad span
// from the parser.
// `continue`
ast::Expr_::ExprAgain(ref opt_ident) => {
let id_str = match *opt_ident {
Some(ident) => format!(" {}", ident.node),