Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ignore uninhabited_references clippy lint
warning: dereferencing a reference to an uninhabited type is undefined behavior --> src/gen/visit.rs:2057:11 | 2057 | match *node {} | ^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninhabited_references = note: `-W clippy::uninhabited-references` implied by `-W clippy::all` = help: to override `-W clippy::all` add `#[allow(clippy::uninhabited_references)]` warning: dereferencing a reference to an uninhabited type is undefined behavior --> src/gen/visit_mut.rs:2060:11 | 2060 | match *node {} | ^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninhabited_references warning: dereferencing a reference to an uninhabited type is undefined behavior --> src/gen/clone.rs:1038:15 | 1038 | match *self {} | ^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninhabited_references warning: dereferencing a reference to an uninhabited type is undefined behavior --> src/gen/debug.rs:1507:15 | 1507 | match *self {} | ^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninhabited_references warning: dereferencing a reference to an uninhabited type is undefined behavior --> src/gen/eq.rs:1021:15 | 1021 | match *self {} | ^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninhabited_references warning: dereferencing a reference to an uninhabited type is undefined behavior --> src/gen/hash.rs:1357:15 | 1357 | match *self {} | ^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninhabited_references
- Loading branch information