Skip to content

Commit b693c41

Browse files
committed
refactor(core): address the clippy::needless_lifetimes lint
1 parent 8ace157 commit b693c41

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/r3_core/src/bind/sorter.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -587,15 +587,14 @@ trait TopologicalSortOutputSink<VertexRef> {
587587
/// ¹ Kahn, Arthur B. (1962), "Topological sorting of large networks",
588588
/// *Communications of the ACM*, **5** (11): 558–562, doi:10.1145/368996.369025
589589
const fn topological_sort<
590-
'a,
591590
Graph,
592591
VertexRef,
593592
VertexRefLessThan,
594593
ReadyVertexQueue,
595594
VertexInfoMap,
596595
OutputSink,
597596
>(
598-
graph: &'a Graph,
597+
graph: &Graph,
599598
vertex_ord_lt: &mut VertexRefLessThan,
600599
out_vertices: &mut OutputSink,
601600
temp_ready_vertex_queue: &mut ReadyVertexQueue,

0 commit comments

Comments
 (0)