mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2025-02-20 14:46:24 +00:00
videocompare: Fix warning
Fixed following warning: warning: unreachable pattern --> video/videofx/src/videocompare/hashed_image.rs:76:13 | 76 | _ => unreachable!(), | ^ | = note: `#[warn(unreachable_patterns)]` on by default
This commit is contained in:
parent
6319d104a8
commit
68ab01254d
1 changed files with 1 additions and 0 deletions
|
@ -73,6 +73,7 @@ impl HasherEngine {
|
|||
let (val, _) = algo.compare(left, right);
|
||||
val.into()
|
||||
}
|
||||
#[cfg(feature = "dssim")]
|
||||
_ => unreachable!(),
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue