about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorScott A Carr <s.carr1024@gmail.com>2016-08-10 09:42:33 -0700
committerScott A Carr <s.carr1024@gmail.com>2016-08-10 09:42:33 -0700
commitf37bf6d367c8fb0a69f72ff49b24ad2da67ddbe5 (patch)
treeeeeba24809cbbf20f8630469cad3f159216b00b6 /src
parent969b2b86ad1e77229dddb739d7b4c180dae07a4b (diff)
downloadrust-f37bf6d367c8fb0a69f72ff49b24ad2da67ddbe5.tar.gz
rust-f37bf6d367c8fb0a69f72ff49b24ad2da67ddbe5.zip
no op commit for travis
Diffstat (limited to 'src')
-rw-r--r--src/librustc/mir/tcx.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/librustc/mir/tcx.rs b/src/librustc/mir/tcx.rs
index 5ca60a70a7c..534bb2c0b2b 100644
--- a/src/librustc/mir/tcx.rs
+++ b/src/librustc/mir/tcx.rs
@@ -214,8 +214,7 @@ impl<'tcx> BinOp {
       pub fn ty<'a, 'gcx>(&self, tcx: TyCtxt<'a, 'gcx, 'tcx>,
                     lhs_ty: Ty<'tcx>,
                     rhs_ty: Ty<'tcx>)
-                    -> Ty<'tcx>
-    {
+                    -> Ty<'tcx> {
         // FIXME: handle SIMD correctly
         match self {
             &BinOp::Add | &BinOp::Sub | &BinOp::Mul | &BinOp::Div | &BinOp::Rem |