rust/clippy_lints
bors f9c1d155b4 Auto merge of #10716 - Icxolu:unitstruct_default_construction, r=Manishearth
Fixes #10609: Adds lint to detect construction of unit struct using `default`

Using `default` to construct a unit struct increases code complexity and adds a function call. This can be avoided by simply removing the call to `default` and simply construct by name.

changelog: [`default_constructed_unit_structs`]: detects construction of unit structs using `default`

fixes #10609
2023-05-03 21:43:02 +00:00
..
src Auto merge of #10716 - Icxolu:unitstruct_default_construction, r=Manishearth 2023-05-03 21:43:02 +00:00
Cargo.toml Bump Clippy version -> 0.1.71 2023-04-23 03:39:19 -07:00
README.md

This crate contains Clippy lints. For the main crate, check GitHub.