Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Resolve needless_return clippy lint in PR 2553
warning: unneeded `return` statement --> serde_derive/src/de.rs:2986:13 | 2986 | return quote!(#assign_to __default.#member); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return = note: `-W clippy::needless-return` implied by `-W clippy::all` help: remove `return` | 2986 - return quote!(#assign_to __default.#member); 2986 + quote!(#assign_to __default.#member) |
- Loading branch information