Commit 4908c69
committed
Ignore unconditional_recursion clippy lint due to false positive
rust-lang/rust-clippy#12133
warning: function cannot return without recursing
--> gen/build/src/cargo.rs:91:5
|
91 | / fn eq(&self, rhs: &Self) -> bool {
92 | | Lookup::new(&self.0).eq(Lookup::new(&rhs.0))
93 | | }
| |_____^
|
note: recursive call site
--> gen/build/src/cargo.rs:92:9
|
92 | Lookup::new(&self.0).eq(Lookup::new(&rhs.0))
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unconditional_recursion
= note: `-W clippy::unconditional-recursion` implied by `-W clippy::all`
= help: to override `-W clippy::all` add `#[allow(clippy::unconditional_recursion)]`1 parent cc6fc0d commit 4908c69
1 file changed
+1
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
76 | 76 | | |
77 | 77 | | |
78 | 78 | | |
| 79 | + | |
79 | 80 | | |
80 | 81 | | |
81 | 82 | | |
| |||
0 commit comments