Skip to content

Commit e5594ba

Browse files
committed
fix other clippy warning about ellided lifetimes
1 parent efc5911 commit e5594ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/svd2rust-regress/src/diff.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ impl Diffing {
257257
Ok([baseline, current])
258258
}
259259

260-
fn get_source_and_command<'s>(&'s self) -> [Option<(Source, Command)>; 2] {
260+
fn get_source_and_command<'s>(&'s self) -> [Option<(Source<'s>, Command<'s>)>; 2] {
261261
let split = |s: &'s str| -> (Source, Command) {
262262
if let Some(s) = s.strip_prefix('@') {
263263
if let Some((source, cmd)) = s.split_once(' ') {

0 commit comments

Comments
 (0)