Skip to content

Commit

Permalink
Fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
togatoga committed Jan 7, 2025
1 parent 27cc278 commit 5cde96c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/graphviz.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pub struct Graphviz<'a> {
pub lattice: Lattice<'a>,
}

impl<'a> Graphviz<'a> {
impl Graphviz<'_> {
fn bfs(&self, start: Node, bests: &BTreeSet<Node>) -> Vec<Node> {
let mut visited = BTreeSet::new();
let mut queue = VecDeque::default();
Expand Down

0 comments on commit 5cde96c

Please sign in to comment.