Skip to content

Commit cbffe0c

Browse files
committed
Ignore elidable_lifetime_names pedantic clippy lint
warning: the following explicit lifetimes could be elided: 'a --> src/rcvec.rs:96:6 | 96 | impl<'a, T> RcVecMut<'a, T> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#elidable_lifetime_names = note: `-W clippy::elidable-lifetime-names` implied by `-W clippy::pedantic` = help: to override `-W clippy::pedantic` add `#[allow(clippy::elidable_lifetime_names)]` help: elide the lifetimes | 96 - impl<'a, T> RcVecMut<'a, T> { 96 + impl<T> RcVecMut<'_, T> { |
1 parent a12fe8b commit cbffe0c

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@
9494
clippy::cast_possible_truncation,
9595
clippy::checked_conversions,
9696
clippy::doc_markdown,
97+
clippy::elidable_lifetime_names,
9798
clippy::incompatible_msrv,
9899
clippy::items_after_statements,
99100
clippy::iter_without_into_iter,

0 commit comments

Comments
 (0)