Fix Clippy version in derive_partial_eq_without_eq
lint
It was first added to Rust in https://github.com/rust-lang/rust/pull/97248 which missed 1.62 just by few days.
This commit is contained in:
parent
8a62b6f523
commit
c8d32e53a2
1 changed files with 1 additions and 1 deletions
|
@ -189,7 +189,7 @@ declare_clippy_lint! {
|
||||||
/// i_am_eq_too: Vec<String>,
|
/// i_am_eq_too: Vec<String>,
|
||||||
/// }
|
/// }
|
||||||
/// ```
|
/// ```
|
||||||
#[clippy::version = "1.62.0"]
|
#[clippy::version = "1.63.0"]
|
||||||
pub DERIVE_PARTIAL_EQ_WITHOUT_EQ,
|
pub DERIVE_PARTIAL_EQ_WITHOUT_EQ,
|
||||||
style,
|
style,
|
||||||
"deriving `PartialEq` on a type that can implement `Eq`, without implementing `Eq`"
|
"deriving `PartialEq` on a type that can implement `Eq`, without implementing `Eq`"
|
||||||
|
|
Loading…
Add table
Reference in a new issue