Skip to content

Commit

Permalink
Fix Clippy warnings (Rust 1.84 beta)
Browse files Browse the repository at this point in the history
clippy 0.1.84 (202008a1b8 2024-12-07)
  • Loading branch information
tatsuya6502 committed Dec 8, 2024
1 parent dc22bf5 commit a162815
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/future/base_cache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -565,13 +565,13 @@ where
(ins_op, ts)
}

async fn do_post_update_steps<'a>(
async fn do_post_update_steps(
&self,
ts: Instant,
key: Arc<K>,
old_info: OldEntryInfo<K, V>,
upd_op: WriteOp<K, V>,
interrupted_op_ch: &'a Sender<InterruptedOp<K, V>>,
interrupted_op_ch: &Sender<InterruptedOp<K, V>>,
) -> (WriteOp<K, V>, Instant) {
use futures_util::FutureExt;

Expand Down

0 comments on commit a162815

Please sign in to comment.