From 35209cb9ec1ed743dfbee9854d6a53500e6bf0ff Mon Sep 17 00:00:00 2001 From: Graydon Hoare Date: Tue, 11 Dec 2012 16:04:35 -0800 Subject: [PATCH] fix long line, r=tidypolice. --- src/libsyntax/ext/deriving.rs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/libsyntax/ext/deriving.rs b/src/libsyntax/ext/deriving.rs index d41e7e315363..434c00e7487e 100644 --- a/src/libsyntax/ext/deriving.rs +++ b/src/libsyntax/ext/deriving.rs @@ -710,9 +710,10 @@ fn expand_deriving_eq_enum_method(cx: ext_ctxt, // Create the nonmatching pattern body. let nonmatching_expr = build::mk_bool(cx, span, !is_eq); - let nonmatching_body_block = build::mk_simple_block(cx, - span, - nonmatching_expr); + let nonmatching_body_block = + build::mk_simple_block(cx, + span, + nonmatching_expr); // Create the nonmatching arm. let nonmatching_arm = {