Skip to content

Commit

Permalink
Remove unneded lifetimes relations declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
spastorino authored and pnkfelix committed Jul 23, 2018
1 parent e4e84fd commit bc1eec3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/librustc_mir/dataflow/graphviz.rs
Expand Up @@ -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 }
Expand Down

0 comments on commit bc1eec3

Please sign in to comment.