Derive debug without feature

Note that this also removed those `finish_non_exhaustive()`.
This commit is contained in:
Ivan Tham 2021-06-07 22:34:19 +08:00 committed by Blaž Hrastnik
parent 1a3a924634
commit 7cc13fefe9
19 changed files with 36 additions and 61 deletions

View file

@ -1,5 +1,4 @@
#[cfg_attr(feature = "debug", derive(Debug))]
#[derive(Eq, PartialEq)]
#[derive(Debug, Eq, PartialEq)]
pub enum Severity {
Error,
Warning,
@ -7,13 +6,13 @@ pub enum Severity {
Hint,
}
#[cfg_attr(feature = "debug", derive(Debug))]
#[derive(Debug)]
pub struct Range {
pub start: usize,
pub end: usize,
}
#[cfg_attr(feature = "debug", derive(Debug))]
#[derive(Debug)]
pub struct Diagnostic {
pub range: Range,
pub line: usize,