Skip to content

Commit 7121e96

Browse files
committed
inout: fixup clippy 1.85 warnings
1 parent 0966d23 commit 7121e96

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

inout/src/reserved.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,11 +149,11 @@ impl<'inp, 'out, T> InOutBufReserved<'inp, 'out, T> {
149149
}
150150
}
151151

152-
impl<'inp, 'out> InOutBufReserved<'inp, 'out, u8> {
152+
impl InOutBufReserved<'_, '_, u8> {
153153
/// Transform buffer into [`PaddedInOutBuf`] using padding algorithm `P`.
154154
#[cfg(feature = "block-padding")]
155155
#[inline(always)]
156-
pub fn into_padded_blocks<P, BS>(self) -> Result<PaddedInOutBuf<'inp, 'out, BS>, PadError>
156+
pub fn into_padded_blocks<P, BS>(self) -> Result<PaddedInOutBuf<'_, '_, BS>, PadError>
157157
where
158158
P: Padding<BS>,
159159
BS: ArraySize,

0 commit comments

Comments
 (0)