about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorSantiago Pastorino <spastorino@gmail.com>2018-07-18 16:53:46 -0300
committerFelix S. Klock II <pnkfelix@pnkfx.org>2018-07-23 13:28:54 +0200
commitbc1eec3fa8bf65736f1e3ea375b22e83bddb38bb (patch)
tree499697d65703638eff8b0a8ea1f9e5ec8b02548c /src
parente4e84fd8ff25c2e033b4efaba3ef55a57713083c (diff)
downloadrust-bc1eec3fa8bf65736f1e3ea375b22e83bddb38bb.tar.gz
rust-bc1eec3fa8bf65736f1e3ea375b22e83bddb38bb.zip
Remove unneded lifetimes relations declaration
Diffstat (limited to 'src')
-rw-r--r--src/librustc_mir/dataflow/graphviz.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/librustc_mir/dataflow/graphviz.rs b/src/librustc_mir/dataflow/graphviz.rs
index 9096ac1444c..f8dc7d2a2a8 100644
--- a/src/librustc_mir/dataflow/graphviz.rs
+++ b/src/librustc_mir/dataflow/graphviz.rs
@@ -34,8 +34,8 @@ pub trait MirWithFlowState<'tcx> {
     fn flow_state(&self) -> &DataflowState<Self::BD>;
 }
 
-impl<'a, 'tcx: 'a, BD> MirWithFlowState<'tcx> for DataflowBuilder<'a, 'tcx, BD>
-    where 'tcx: 'a, BD: BitDenotation
+impl<'a, 'tcx, BD> MirWithFlowState<'tcx> for DataflowBuilder<'a, 'tcx, BD>
+    where BD: BitDenotation
 {
     type BD = BD;
     fn node_id(&self) -> NodeId { self.node_id }