mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-23 14:02:06 +03:00
Remove unneded lifetimes relations declaration
This commit is contained in:
committed by
Felix S. Klock II
parent
e4e84fd8ff
commit
bc1eec3fa8
@@ -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 }
|
||||
|
||||
Reference in New Issue
Block a user