Skip to content

Commit

Permalink
main: Remove unnecessary lifetime
Browse files Browse the repository at this point in the history
This fixes a waning on newer rust compilers that complains about it.

Signed-off-by: Anderson Toshiyuki Sasaki <ansasaki@redhat.com>
  • Loading branch information
ansasaki committed Jan 17, 2025
1 parent 18f4a80 commit a3c9dc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion keylime-agent/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1015,7 +1015,7 @@ mod testing {
}
}

impl<'a> QuoteData<'a> {
impl QuoteData<'_> {
pub(crate) async fn fixture() -> std::result::Result<
(Self, AsyncMutexGuard<'static, ()>),
MainTestError,
Expand Down

0 comments on commit a3c9dc4

Please sign in to comment.