about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorGraydon Hoare <graydon@mozilla.com>2012-12-11 16:04:35 -0800
committerGraydon Hoare <graydon@mozilla.com>2012-12-11 16:04:58 -0800
commit35209cb9ec1ed743dfbee9854d6a53500e6bf0ff (patch)
treea310848673762d85937f1b36eac34edcaa4e4e3c /src/libsyntax
parent76dc7818eae05dab94429a61c95a400a2b85c2fe (diff)
fix long line, r=tidypolice.
Diffstat (limited to 'src/libsyntax')
-rw-r--r--src/libsyntax/ext/deriving.rs7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/libsyntax/ext/deriving.rs b/src/libsyntax/ext/deriving.rs
index d41e7e31536..434c00e7487 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 = {