Skip to content

Commit

Permalink
rsdns: fix clippy::needless-lifetimes warnings
Browse files Browse the repository at this point in the history
Appeared since rustc v1.84.0-beta.2
  • Loading branch information
r-bk committed Dec 1, 2024
1 parent 440bd19 commit 1ee2502
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/async_client_impl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ struct ClientCtx<'a, 'b, 'c, 'd> {
buf: &'d mut [u8],
}

impl<'a, 'b, 'c, 'd> ClientCtx<'a, 'b, 'c, 'd> {
impl ClientCtx<'_, '_, '_, '_> {
async fn query_raw(&mut self) -> Result<usize> {
let query_lifetime = self.config.query_lifetime();

Expand Down

0 comments on commit 1ee2502

Please sign in to comment.