Remove unneded lifetimes relations declaration

This commit is contained in:
Santiago Pastorino 2018-07-18 16:53:46 -03:00 committed by Felix S. Klock II
parent e4e84fd8ff
commit bc1eec3fa8

View file

@ -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 }