Skip to content

Commit bc1eec3

Browse files
spastorinopnkfelix
authored andcommitted
Remove unneded lifetimes relations declaration
1 parent e4e84fd commit bc1eec3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/librustc_mir/dataflow/graphviz.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ pub trait MirWithFlowState<'tcx> {
3434
fn flow_state(&self) -> &DataflowState<Self::BD>;
3535
}
3636

37-
impl<'a, 'tcx: 'a, BD> MirWithFlowState<'tcx> for DataflowBuilder<'a, 'tcx, BD>
38-
where 'tcx: 'a, BD: BitDenotation
37+
impl<'a, 'tcx, BD> MirWithFlowState<'tcx> for DataflowBuilder<'a, 'tcx, BD>
38+
where BD: BitDenotation
3939
{
4040
type BD = BD;
4141
fn node_id(&self) -> NodeId { self.node_id }

0 commit comments

Comments
 (0)