Skip to content
This repository was archived by the owner on Sep 9, 2025. It is now read-only.

Commit 29fcf86

Browse files
author
Hendrik van Antwerpen
committed
Fix warnings
1 parent 44153a2 commit 29fcf86

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

stack-graphs/src/c.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1602,6 +1602,7 @@ fn sg_partial_path_arena_find_partial_paths_in_file_inner(
16021602
db.add_partial_path(graph, partials, path);
16031603
},
16041604
)?;
1605+
#[allow(deprecated)]
16051606
ForwardPartialPathStitcher::find_locally_complete_partial_paths(
16061607
graph,
16071608
partials,

stack-graphs/tests/it/can_find_node_partial_paths_in_database.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ fn check_node_partial_paths(
4040
)
4141
.expect("should never be cancelled");
4242
let mut db = Database::new();
43+
#[allow(deprecated)]
4344
ForwardPartialPathStitcher::find_locally_complete_partial_paths(
4445
graph,
4546
&mut partials,

stack-graphs/tests/it/can_find_partial_paths_in_file.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ fn check_partial_paths_in_file(graph: &StackGraph, file: &str, expected_paths: &
3131
)
3232
.expect("should never be cancelled");
3333
let mut results = BTreeSet::new();
34+
#[allow(deprecated)]
3435
ForwardPartialPathStitcher::find_locally_complete_partial_paths(
3536
graph,
3637
&mut partials,

stack-graphs/tests/it/can_find_root_partial_paths_in_database.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ fn check_root_partial_paths(
4444
)
4545
.expect("should never be cancelled");
4646
let mut db = Database::new();
47+
#[allow(deprecated)]
4748
ForwardPartialPathStitcher::find_locally_complete_partial_paths(
4849
graph,
4950
&mut partials,

0 commit comments

Comments
 (0)