]> git.lizzy.rs Git - rust.git/commitdiff
fix long line, r=tidypolice.
authorGraydon Hoare <graydon@mozilla.com>
Wed, 12 Dec 2012 00:04:35 +0000 (16:04 -0800)
committerGraydon Hoare <graydon@mozilla.com>
Wed, 12 Dec 2012 00:04:58 +0000 (16:04 -0800)
src/libsyntax/ext/deriving.rs

index d41e7e3153636074b9219556482867ada01cf784..434c00e7487eb99cb5f4d68039534e2113802f78 100644 (file)
@@ -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 = {