We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
clippy::needless_lifetimes
1 parent 8ace157 commit b693c41Copy full SHA for b693c41
src/r3_core/src/bind/sorter.rs
@@ -587,15 +587,14 @@ trait TopologicalSortOutputSink<VertexRef> {
587
/// ¹ Kahn, Arthur B. (1962), "Topological sorting of large networks",
588
/// *Communications of the ACM*, **5** (11): 558–562, doi:10.1145/368996.369025
589
const fn topological_sort<
590
- 'a,
591
Graph,
592
VertexRef,
593
VertexRefLessThan,
594
ReadyVertexQueue,
595
VertexInfoMap,
596
OutputSink,
597
>(
598
- graph: &'a Graph,
+ graph: &Graph,
599
vertex_ord_lt: &mut VertexRefLessThan,
600
out_vertices: &mut OutputSink,
601
temp_ready_vertex_queue: &mut ReadyVertexQueue,
0 commit comments