Skip to content

Commit a578604

Browse files
committed
remove useless lifetime
1 parent 980f671 commit a578604

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/individual_table.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,7 @@ pub struct IndividualTable<'a> {
5151
table_: &'a ll_bindings::tsk_individual_table_t,
5252
}
5353

54-
fn make_individual_table_row<'a>(
55-
table: &'a IndividualTable,
56-
pos: tsk_id_t,
57-
) -> Option<IndividualTableRow> {
54+
fn make_individual_table_row(table: &IndividualTable, pos: tsk_id_t) -> Option<IndividualTableRow> {
5855
// panic is okay here, as we are handling a bad
5956
// input value before we first call this to
6057
// set up the iterator

0 commit comments

Comments
 (0)