Skip to content

Commit eb792a3

Browse files
committed
fix(core): lint warning in decode.rs
1 parent 8ff14dc commit eb792a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sqlx-core/src/decode.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ impl_decode_for_smartpointer!(Box);
125125
impl_decode_for_smartpointer!(Rc);
126126

127127
// implement `Decode` for Cow<T> for all SQL types
128-
impl<'r, 'a, DB, T> Decode<'r, DB> for Cow<'a, T>
128+
impl<'r, DB, T> Decode<'r, DB> for Cow<'_, T>
129129
where
130130
DB: Database,
131131
// `ToOwned` is required here to satisfy `Cow`

0 commit comments

Comments
 (0)