about summary refs log tree commit diff
path: root/compiler/rustc_borrowck/src/dataflow.rs
diff options
context:
space:
mode:
authorMaybe Waffle <waffle.lapkin@gmail.com>2024-04-14 15:40:26 +0000
committerMaybe Waffle <waffle.lapkin@gmail.com>2024-04-14 15:48:53 +0000
commit0d5fc9bf584f0e8700f0c3d2854bb6c70453f624 (patch)
tree163982785183644158a7d71d90407fa85e9a41a1 /compiler/rustc_borrowck/src/dataflow.rs
parent398da593a53161c1ef9ca7dabbc5e9edf67deac6 (diff)
downloadrust-0d5fc9bf584f0e8700f0c3d2854bb6c70453f624.tar.gz
rust-0d5fc9bf584f0e8700f0c3d2854bb6c70453f624.zip
Merge `{With,Graph}{Successors,Predecessors}` into `{Successors,Predecessors}`
Now with GAT!
Diffstat (limited to 'compiler/rustc_borrowck/src/dataflow.rs')
-rw-r--r--compiler/rustc_borrowck/src/dataflow.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_borrowck/src/dataflow.rs b/compiler/rustc_borrowck/src/dataflow.rs
index bc5bd787956..c185986a7d8 100644
--- a/compiler/rustc_borrowck/src/dataflow.rs
+++ b/compiler/rustc_borrowck/src/dataflow.rs
@@ -1,5 +1,5 @@
 use rustc_data_structures::fx::FxIndexMap;
-use rustc_data_structures::graph::WithSuccessors;
+use rustc_data_structures::graph::Successors;
 use rustc_index::bit_set::BitSet;
 use rustc_middle::mir::{
     self, BasicBlock, Body, CallReturnPlaces, Location, Place, TerminatorEdges,